0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-31 01:43:02 +08:00

Merge pull request #733 from mingulov/doc

Doc examples with zmq_msg_close usage - parameter is 'zmq_msg_t *'
This commit is contained in:
Pieter Hintjens 2013-11-04 05:29:36 -08:00
commit 75af9ddb78
2 changed files with 3 additions and 2 deletions

View File

@ -40,6 +40,7 @@ EXAMPLE
-------
.Receiving a multi-frame message
----
zmq_msg_t frame;
while (true) {
// Create an empty 0MQ message to hold the message frame
int rc = zmq_msg_init (&frame);
@ -53,7 +54,7 @@ while (true) {
fprintf (stderr, "end\n");
break;
}
zmq_msg_close (frame);
zmq_msg_close (&frame);
}
----

View File

@ -45,7 +45,7 @@ while (true) {
fprintf (stderr, "end\n");
break;
}
zmq_msg_close (part);
zmq_msg_close (&part);
}
----