From 624c14236585e8fb1352c4aa3d1f74598e9b6b8a Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sat, 26 May 2018 20:08:03 +0100 Subject: [PATCH] Problem: static analysis warning about ifdef typo Solution: fix it --- src/tipc_connecter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tipc_connecter.cpp b/src/tipc_connecter.cpp index 4f0a2992..befb4a7e 100644 --- a/src/tipc_connecter.cpp +++ b/src/tipc_connecter.cpp @@ -255,7 +255,7 @@ zmq::fd_t zmq::tipc_connecter_t::connect () // Following code should handle both Berkeley-derived socket // implementations and Solaris. int err = 0; -#if ZMQ_HAVE_VXWORKS +#ifdef ZMQ_HAVE_VXWORKS int len = sizeof (err); #else socklen_t len = sizeof (err);