mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-23 08:31:46 +02:00
Problem: formatting inconsistent
Solution: applied clang-format
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main (int argc, char *argv [])
|
||||
int main (int argc, char *argv[])
|
||||
{
|
||||
const char *bind_to;
|
||||
int roundtrip_count;
|
||||
@@ -44,12 +44,12 @@ int main (int argc, char *argv [])
|
||||
|
||||
if (argc != 4) {
|
||||
printf ("usage: local_lat <bind-to> <message-size> "
|
||||
"<roundtrip-count>\n");
|
||||
"<roundtrip-count>\n");
|
||||
return 1;
|
||||
}
|
||||
bind_to = argv [1];
|
||||
message_size = atoi (argv [2]);
|
||||
roundtrip_count = atoi (argv [3]);
|
||||
bind_to = argv[1];
|
||||
message_size = atoi (argv[2]);
|
||||
roundtrip_count = atoi (argv[3]);
|
||||
|
||||
ctx = zmq_init (1);
|
||||
if (!ctx) {
|
||||
|
Reference in New Issue
Block a user