Fixed example for multipart zmq_recv()

This commit is contained in:
Pieter Hintjens 2010-08-21 13:46:03 +02:00
parent 87612be91d
commit c52d1f2d47

View File

@ -83,7 +83,7 @@ assert (rc == 0);
.Receiving a multi-part message
----
int64_t more;
int64_t more_size = sizeof more;
size_t more_size = sizeof more;
do {
/* Create an empty 0MQ message to hold the message part */
zmq_msg_t part;