Fix assignment operator thinko

Pointed out by Michael Paquier
This commit is contained in:
Alvaro Herrera 2015-01-24 11:15:56 -03:00
parent d1747571b6
commit f2789ab84e

View File

@ -884,7 +884,7 @@ select_loop(int maxFd, fd_set *workerset, bool *aborting)
i = -1; i = -1;
if (WSAGetLastError() == WSAEINTR) if (WSAGetLastError() == WSAEINTR)
errno == EINTR; errno = EINTR;
} }
#endif #endif