0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-29 00:32:34 +08:00

perf: fix typo

This commit is contained in:
Martin Hurton 2010-07-26 12:24:00 +02:00
parent 10533a560b
commit 66470b2c55
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ int main (int argc, char *argv [])
ctx = zmq_init (1); ctx = zmq_init (1);
if (!ctx) { if (!ctx) {
printf ("error in zmq_send: %s\n", zmq_strerror (errno)); printf ("error in zmq_init: %s\n", zmq_strerror (errno));
return -1; return -1;
} }

View File

@ -44,7 +44,7 @@ int main (int argc, char *argv [])
ctx = zmq_init (1); ctx = zmq_init (1);
if (!ctx) { if (!ctx) {
printf ("error in zmq_recv: %s\n", zmq_strerror (errno)); printf ("error in zmq_init: %s\n", zmq_strerror (errno));
return -1; return -1;
} }