0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-14 17:58:01 +08:00

Added missing semi-colon.

This commit is contained in:
jdc8 2012-06-19 09:37:06 -04:00
parent eb16f6b88e
commit 98ee759dad

View File

@ -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;