diff options
author | Min Ragan-Kelley <benjaminrk@gmail.com> | 2011-01-06 08:42:57 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2011-01-06 08:42:57 +0100 |
commit | 08cd2ce05da74143b6154f7d665756870077c38d (patch) | |
tree | ded1340510dd67a84cd58182efe3cfa2536481be /include/zmq.h | |
parent | 472bdcd6b4995d2ab92e97aafa898f083ce1f3ba (diff) |
resolve "function declaration isn't a prototype"
change two declarations in headers to form f(void); instead of f();
which eliminates the warnings when compiling against zeromq
Signed-off-by: MinRK <benjaminrk@gmail.com>
Diffstat (limited to 'include/zmq.h')
-rw-r--r-- | include/zmq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zmq.h b/include/zmq.h index a773f45..2852886 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -108,7 +108,7 @@ ZMQ_EXPORT void zmq_version (int *major, int *minor, int *patch); /* of this function is to make the code 100% portable, including where 0MQ */ /* compiled with certain CRT library (on Windows) is linked to an */ /* application that uses different CRT library. */ -ZMQ_EXPORT int zmq_errno (); +ZMQ_EXPORT int zmq_errno (void); /* Resolves system errors and 0MQ errors to human-readable string. */ ZMQ_EXPORT const char *zmq_strerror (int errnum); |