fix of documentation typo

This commit is contained in:
Martin Sustrik 2010-04-16 09:53:09 +02:00
parent 1c33941be9
commit d524c4e15d

View File

@ -256,7 +256,7 @@ assert (rc);
affinity = 2;
rc = zmq_setsockopt (socket, ZMQ_AFFINITY, &affinity, sizeof affinity);
assert (rc);
rc = zmq_bind (socket, "tcp://lo:5555");
rc = zmq_bind (socket, "tcp://lo:5556");
assert (rc);
----