ThreadSocketHandler2(): cast to avoid signed/unsigned warning

This commit is contained in:
Jeff Garzik 2012-05-01 17:54:52 -04:00 committed by Jeff Garzik
parent 10ab9c2f42
commit 061a001590
1 changed files with 1 additions and 1 deletions

View File

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