Commit 52bab422 authored by Bernd Prager's avatar Bernd Prager Committed by Martin Sustrik

Missing bracket added

Signed-off: Martin Sustrik <sustrik@250bpm.com>
parent 9b3e61a1
......@@ -603,7 +603,7 @@ int zmq_poll (zmq_pollitem_t *items_, int nitems_, long timeout_)
}
#else
int rc = select (maxfd + 1, &inset, &outset, &errset, ptimeout);
if (unlikely (rc == -1) {
if (unlikely (rc == -1)) {
if (errno == EINTR || errno == EBADF)
return -1;
errno_assert (false);
......
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