Commit 1b863243 authored by Martin Hurton's avatar Martin Hurton

Fix test_disconnect_inproc to work on ILP64 systems

parent 8af208fa
......@@ -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;
......
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