ThreadSocketHandler2(): cast to avoid signed/unsigned warning
This commit is contained in:
parent
10ab9c2f42
commit
061a001590
1 changed files with 1 additions and 1 deletions
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue