Commit f103f626 authored by Simon Giesecke's avatar Simon Giesecke

Problem: unreachable return statement

Solution: fix #if/#else structure
parent 290d2153
...@@ -194,8 +194,9 @@ int zmq::tune_tcp_maxrt (fd_t sockfd_, int timeout_) ...@@ -194,8 +194,9 @@ int zmq::tune_tcp_maxrt (fd_t sockfd_, int timeout_)
sizeof (timeout_)); sizeof (timeout_));
tcp_assert_tuning_error (sockfd_, rc); tcp_assert_tuning_error (sockfd_, rc);
return rc; return rc;
#endif #else
return 0; return 0;
#endif
} }
int zmq::tcp_write (fd_t s_, const void *data_, size_t size_) int zmq::tcp_write (fd_t s_, const void *data_, size_t size_)
......
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