From: Vadim Zeitlin Date: Fri, 26 Dec 2008 00:01:17 +0000 (+0000) Subject: correct typo in one of the last changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/74a3342702bf3a76a845f65f4510fd8612d3d802?ds=inline correct typo in one of the last changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/sockmsw.cpp b/src/msw/sockmsw.cpp index 1edcf8d67d..6bae719a94 100644 --- a/src/msw/sockmsw.cpp +++ b/src/msw/sockmsw.cpp @@ -634,7 +634,7 @@ int wxSocketImplMSW::Write(const void *buffer, int size) } /* If the socket is blocking, wait for writability (with a timeout) */ - if ( BlockForOutputWithTimeout() ) + if ( !BlockForOutputWithTimeout() ) return -1; /* Write the data */