Commit 62ac5bb7 authored by Pieter Hintjens's avatar Pieter Hintjens

Fixed type for ZMQ_RCVMORE getsockopt example

parent 188e99c0
......@@ -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 */
......
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