Commit 15f5b7ff authored by Richard Newton's avatar Richard Newton

Fix test warning.

parent c9772d0a
...@@ -40,7 +40,7 @@ int main (void) { ...@@ -40,7 +40,7 @@ int main (void) {
zmq_send(dealer, "", 0, 0); zmq_send(dealer, "", 0, 0);
zmq_msg_t ident, empty, echo; zmq_msg_t ident, empty;
zmq_msg_init(&ident); zmq_msg_init(&ident);
rc = zmq_msg_recv(&ident, router, 0); rc = zmq_msg_recv(&ident, router, 0);
assert(rc >= 0); assert(rc >= 0);
...@@ -62,4 +62,4 @@ int main (void) { ...@@ -62,4 +62,4 @@ int main (void) {
close_zero_linger(dealer); close_zero_linger(dealer);
close_zero_linger(router); close_zero_linger(router);
zmq_ctx_term(ctx); zmq_ctx_term(ctx);
} }
\ No newline at end of file
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