fix an incorrect if-clause in net.cpp

This commit is contained in:
Philip Kaufmann 2012-05-08 23:02:48 +02:00
parent 9e11cb53dd
commit 3b6ed2294b

View file

@ -716,7 +716,7 @@ void ThreadSocketHandler2(void* parg)
if (nSelect == SOCKET_ERROR)
{
int nErr = WSAGetLastError();
if (hSocketMax > (SOCKET) -1)
if (hSocketMax != INVALID_SOCKET)
{
printf("socket select error %d\n", nErr);
for (unsigned int i = 0; i <= hSocketMax; i++)