Commit c01365d4 authored by Pieter Hintjens's avatar Pieter Hintjens

Fixed man page example

parent bd4a76cc
......@@ -43,7 +43,7 @@ zmq_msg_t msg;
zmq_msg_init (&msg);
rc = zmq_msg_recv (&msg, dealer, 0);
assert (rc != -1);
char *user_id = zmq_msg_gets (&msg, "User-Id");
const char *user_id = zmq_msg_gets (&msg, "User-Id");
zmq_msg_close (&msg);
----
......
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