Commit c52d1f2d authored by Pieter Hintjens's avatar Pieter Hintjens

Fixed example for multipart zmq_recv()

parent 87612be9
...@@ -83,7 +83,7 @@ assert (rc == 0); ...@@ -83,7 +83,7 @@ assert (rc == 0);
.Receiving a multi-part message .Receiving a multi-part message
---- ----
int64_t more; int64_t more;
int64_t more_size = sizeof more; size_t more_size = sizeof more;
do { do {
/* Create an empty 0MQ message to hold the message part */ /* Create an empty 0MQ message to hold the message part */
zmq_msg_t part; zmq_msg_t part;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment