From 6f0d05eda1a7f89c6297ac15f7fce2f994e71151 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Mon, 18 Jun 2012 16:05:47 +0000 Subject: 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. --- src/qcommon/net_ip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qcommon') diff --git a/src/qcommon/net_ip.c b/src/qcommon/net_ip.c index f7531c6e..6b4161a5 100644 --- a/src/qcommon/net_ip.c +++ b/src/qcommon/net_ip.c @@ -1669,7 +1669,7 @@ void NET_Sleep(int msec) { FD_SET(ip6_socket, &fdr); - if(ip6_socket > highestfd) + if((int)ip6_socket > highestfd) highestfd = ip6_socket; } -- cgit