diff options
author | Thomas White <taw@physics.org> | 2021-04-21 15:03:19 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-04-23 14:57:24 +0200 |
commit | 518a25b79026a17604c0430e1f0ed14954fe713a (patch) | |
tree | f995937b2f410b14ca8632053f8c8029fe01a9fc /src/im-zmq.c | |
parent | 1363f2de072e84c688e35cb87aabbc286877cad8 (diff) |
MsgPack: Implement extraction of image data
Diffstat (limited to 'src/im-zmq.c')
-rw-r--r-- | src/im-zmq.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/im-zmq.c b/src/im-zmq.c index 5c9e90bc..2f489811 100644 --- a/src/im-zmq.c +++ b/src/im-zmq.c @@ -90,9 +90,7 @@ void *im_zmq_fetch(struct im_zmq *z, size_t *pdata_size) void *data_copy; zmq_msg_init(&z->msg); - STATUS("requesting data...\n"); msg_size = zmq_msg_recv(&z->msg, z->socket, 0); - STATUS("done (got %i bytes)\n", msg_size); if ( msg_size == -1 ) { ERROR("ZMQ recieve failed: %s\n", zmq_strerror(errno)); zmq_msg_close(&z->msg); |