diff options
Diffstat (limited to 'perf/cpp/remote_thr.cpp')
-rw-r--r-- | perf/cpp/remote_thr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perf/cpp/remote_thr.cpp b/perf/cpp/remote_thr.cpp index 06946f5..5474c6a 100644 --- a/perf/cpp/remote_thr.cpp +++ b/perf/cpp/remote_thr.cpp @@ -27,13 +27,13 @@ int main (int argc, char *argv []) { if (argc != 4) { - printf ("usage: remote_thr <connect-to> <message-count> " - "<message-size>\n"); + printf ("usage: remote_thr <connect-to> <message-size> " + "<message-count>\n"); return 1; } const char *connect_to = argv [1]; - int message_count = atoi (argv [2]); - size_t message_size = (size_t) atoi (argv [3]); + size_t message_size = (size_t) atoi (argv [2]); + int message_count = atoi (argv [3]); zmq::context_t ctx (1, 1); |