Skip to content

Commit

Permalink
Merge pull request #623 from ricnewton/master
Browse files Browse the repository at this point in the history
Fix compile error on windows.
  • Loading branch information
ianbarber committed Aug 8, 2013
2 parents 749c391 + e16a6af commit eccfede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ bool zmq::get_peer_ip_address (fd_t sockfd_, std::string &ip_addr_)
wsa_assert (WSAGetLastError () != WSANOTINITIALISED &&
WSAGetLastError () != WSAEFAULT &&
WSAGetLastError () != WSAEINPROGRESS &&
WSAGetLastError () != WSAENOTSOCK)
WSAGetLastError () != WSAENOTSOCK);
return false;
}
#else
Expand Down

0 comments on commit eccfede

Please sign in to comment.