fix IPv6-only operation of Windows binaries

the SOCKET type is unsigned on Windows, and should be casted to an int before comparing with the highestfd variable (note: ``int highestfd = -1;'')

From /dev/humancontroller.
This commit is contained in:
Zack Middleton 2012-06-18 16:05:47 +00:00
parent c16338cfa9
commit 6ff3b03376
1 changed files with 1 additions and 1 deletions

View File

@ -1672,7 +1672,7 @@ void NET_Sleep(int msec)
{
FD_SET(ip6_socket, &fdr);
if(ip6_socket > highestfd)
if((int)ip6_socket > highestfd)
highestfd = ip6_socket;
}