summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Sohns <eriksohns@fastmail.net>2015-12-13 16:54:59 +0100
committerErik Sohns <eriksohns@fastmail.net>2015-12-13 16:54:59 +0100
commitdee50e84e5e3d18f727c0257b85c37fb68e73e0e (patch)
tree94815d8160362b0028202bb47565890802c41457
parenta255354d170aaa6d0d9b91c3ee568b556b26e4aa (diff)
downloadATCD-dee50e84e5e3d18f727c0257b85c37fb68e73e0e.tar.gz
added support for CancelIoEx() (Win32) (update passes travis-ci build)
-rw-r--r--ACE/ace/WIN32_Asynch_IO.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/WIN32_Asynch_IO.cpp b/ACE/ace/WIN32_Asynch_IO.cpp
index 7f3d9d6fbc4..1d42267843d 100644
--- a/ACE/ace/WIN32_Asynch_IO.cpp
+++ b/ACE/ace/WIN32_Asynch_IO.cpp
@@ -179,7 +179,7 @@ ACE_WIN32_Asynch_Operation::cancel (void)
int const result = (int) ::CancelIo (this->handle_);
#else
int const result = (int) ::CancelIoEx (this->handle_,
- NULL);
+ 0);
#endif /* _WIN32_WINNT < 0x0600 */
if (result == 0)