From 40dbbe342ed95d8ea977b6300facc76ecb476cb9 Mon Sep 17 00:00:00 2001 From: hitstergtd Date: Sun, 1 May 2016 21:40:08 +0100 Subject: [PATCH] Problem: bounce() arguments reversed Solution: Put them in the right order to quiet Coverity. Found by: Coverity Scan --- tests/test_monitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_monitor.cpp b/tests/test_monitor.cpp index e5e7cba9..d79fd36b 100644 --- a/tests/test_monitor.cpp +++ b/tests/test_monitor.cpp @@ -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);