Commit 19712d3f authored by Martin Hurton's avatar Martin Hurton

Merge pull request #1181 from whoshuu/patch-1

Fix non-constant-expression narrowing
parents 4b70793f 5642366f
......@@ -163,8 +163,12 @@ void zmq::select_t::loop ()
memcpy (&exceptfds, &source_set_err, sizeof source_set_err);
// Wait for events.
#ifdef ZMQ_HAVE_OSX
struct timeval tv = {(long) (timeout / 1000), timeout % 1000 * 1000};
#else
struct timeval tv = {(long) (timeout / 1000),
(long) (timeout % 1000 * 1000)};
#endif
#ifdef ZMQ_HAVE_WINDOWS
int rc = select (0, &readfds, &writefds, &exceptfds,
timeout ? &tv : NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment