Commit f028379c authored by Ian Barber's avatar Ian Barber

Incorrect var name in monitor_event

The call to the va version of the function was using 'event' instead of
'event_'
parent 8bf541b2
......@@ -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);
}
......
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