mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 02:42:58 +01:00
Incorrect var name in monitor_event
The call to the va version of the function was using 'event' instead of 'event_'
This commit is contained in:
parent
8bf541b252
commit
f028379c1c
@ -1001,7 +1001,7 @@ void zmq::socket_base_t::monitor_event (int event_, ...)
|
||||
{
|
||||
va_list args;
|
||||
va_start (args, event_);
|
||||
va_monitor_event(event, args);
|
||||
va_monitor_event(event_, args);
|
||||
va_end (args);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user