Commit 464d3fd3 authored by Luca Boccassi's avatar Luca Boccassi

Merge pull request #1944 from hitstergtd/x-testmonitor-fix

Problem: bounce() arguments reversed
parents b65fc903 40dbbe34
......@@ -105,7 +105,7 @@ int main (void)
assert (rc == 0);
rc = zmq_connect (client, "tcp://127.0.0.1:9998");
assert (rc == 0);
bounce (client, server);
bounce (server, client);
// Close client and server
close_zero_linger (client);
......
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