0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-29 00:32:34 +08:00

Merge pull request #584 from hurtonm/master

Fix test_disconnect_inproc to work on ILP64 systems
This commit is contained in:
Pieter Hintjens 2013-06-22 04:18:27 -07:00
commit 675bd4640b

View File

@ -18,7 +18,6 @@
*/
#include <zmq.h>
#include <inttypes.h>
#include <string.h>
#include <assert.h>
@ -43,7 +42,7 @@ int main(int argc, char** argv) {
zmq_bind(pubSocket, "inproc://someInProcDescriptor") && printf("zmq_bind: %s\n", zmq_strerror(errno));
//zmq_bind(pubSocket, "tcp://*:30010") && printf("zmq_bind: %s\n", zmq_strerror(errno));
int32_t more;
int more;
size_t more_size = sizeof(more);
int iteration = 0;