Commit 98ee759d authored by jdc8's avatar jdc8

Added missing semi-colon.

parent eb16f6b8
......@@ -48,7 +48,7 @@ zmq::fd_t zmq::open_socket (int domain_, int type_, int protocol_)
fd_t s = socket (domain_, type_, protocol_);
#ifdef ZMQ_HAVE_WINDOWS
if (s == INVALID_SOCKET)
return INVALID_SOCKET
return INVALID_SOCKET;
#else
if (s == -1)
return -1;
......
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