diff options
author | Martin Lucina <martin@lucina.net> | 2012-01-23 08:54:14 +0100 |
---|---|---|
committer | Martin Lucina <martin@lucina.net> | 2012-01-23 08:54:14 +0100 |
commit | 75af6aed482ab16997c1388fe801f74d11ec12a4 (patch) | |
tree | 637249631acc81446f6b5c2e25223f3164e132f6 /src/io_thread.cpp | |
parent | b593ea30833ad5dcacb9076c988aec31b0cf26ec (diff) |
Imported Upstream version 2.1.9upstream/2.1.9
Diffstat (limited to 'src/io_thread.cpp')
-rw-r--r-- | src/io_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io_thread.cpp b/src/io_thread.cpp index be52bdd..bb7971d 100644 --- a/src/io_thread.cpp +++ b/src/io_thread.cpp @@ -72,7 +72,7 @@ void zmq::io_thread_t::in_event () // Get the next command. If there is none, exit. command_t cmd; - int rc = mailbox.recv (&cmd, false); + int rc = mailbox.recv (&cmd, 0); if (rc != 0 && errno == EINTR) continue; if (rc != 0 && errno == EAGAIN) |