Commit 624c1423 authored by Luca Boccassi's avatar Luca Boccassi

Problem: static analysis warning about ifdef typo

Solution: fix it
parent 2d1bb07f
...@@ -255,7 +255,7 @@ zmq::fd_t zmq::tipc_connecter_t::connect () ...@@ -255,7 +255,7 @@ zmq::fd_t zmq::tipc_connecter_t::connect ()
// Following code should handle both Berkeley-derived socket // Following code should handle both Berkeley-derived socket
// implementations and Solaris. // implementations and Solaris.
int err = 0; int err = 0;
#if ZMQ_HAVE_VXWORKS #ifdef ZMQ_HAVE_VXWORKS
int len = sizeof (err); int len = sizeof (err);
#else #else
socklen_t len = sizeof (err); socklen_t len = sizeof (err);
......
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