0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-14 17:58:01 +08:00

Problem: unreachable return statement

Solution: fix #if/#else structure
This commit is contained in:
Simon Giesecke 2018-05-17 16:53:24 +02:00
parent 290d215324
commit f103f62630

View File

@ -194,8 +194,9 @@ int zmq::tune_tcp_maxrt (fd_t sockfd_, int timeout_)
sizeof (timeout_));
tcp_assert_tuning_error (sockfd_, rc);
return rc;
#endif
#else
return 0;
#endif
}
int zmq::tcp_write (fd_t s_, const void *data_, size_t size_)