Fixed zmq_errno function definition

This commit is contained in:
Pieter Hintjens 2013-06-28 09:41:05 +02:00
parent fe2753da0a
commit c4ae74f816

View File

@ -106,7 +106,7 @@ const char *zmq_strerror (int errnum_)
return zmq::errno_to_string (errnum_);
}
int zmq_errno ()
int zmq_errno (void)
{
return errno;
}