0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 23:01:04 +08:00

Fixed type for ZMQ_RCVMORE getsockopt example

This commit is contained in:
Pieter Hintjens 2014-01-24 10:20:46 -06:00
parent 188e99c0d4
commit 62ac5bb77f
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ zmq_msg_close (&msg);
.Receiving a multi-part message
----
int64_t more;
int more;
size_t more_size = sizeof (more);
do {
/* Create an empty 0MQ message to hold the message part */

View File

@ -88,7 +88,7 @@ zmq_msg_close (&msg);
.Receiving a multi-part message
----
int64_t more;
int more;
size_t more_size = sizeof (more);
do {
/* Create an empty 0MQ message to hold the message part */