Commit a6c6054e authored by Pieter Hintjens's avatar Pieter Hintjens

Merge pull request #425 from Astellar/zmq_msg_t

zmq_msg_t will now typedef a named struct.
parents d981c91f 7bf516de
......@@ -176,7 +176,7 @@ ZMQ_EXPORT int zmq_term (void *context);
/* 0MQ message definition. */
/******************************************************************************/
typedef struct {unsigned char _ [32];} zmq_msg_t;
typedef struct zmq_msg_t {unsigned char _ [32];} zmq_msg_t;
typedef void (zmq_free_fn) (void *data, void *hint);
......
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