From: Vadim Zeitlin Date: Wed, 18 Nov 2009 09:56:52 +0000 (+0000) Subject: Fix harmless g++ warning about using NULL for non-pointer. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/46d1cdb44ca2add69ee9103e6ef1bd1d51c2230c Fix harmless g++ warning about using NULL for non-pointer. PostQueuedCompletionStatus() may be either an int or a pointer, pass 0 instead of NULL when we don't care about its value anyhow. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62678 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/private/fswatcher.h b/include/wx/msw/private/fswatcher.h index 64c0c2f616..99d2a21b17 100644 --- a/include/wx/msw/private/fswatcher.h +++ b/include/wx/msw/private/fswatcher.h @@ -161,7 +161,7 @@ public: { wxCHECK_MSG( m_iocp != INVALID_HANDLE_VALUE, false, "IOCP not init" ); - int ret = PostQueuedCompletionStatus(m_iocp, 0, NULL, NULL); + int ret = PostQueuedCompletionStatus(m_iocp, 0, 0, NULL); if (!ret) { wxLogSysError(_("Unable to post completion status"));