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:
parent
188e99c0d4
commit
62ac5bb77f
@ -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 */
|
||||
|
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user