From 18ccad34785dd40794a2198ac79d05694b2f1a40 Mon Sep 17 00:00:00 2001 From: black Date: Fri, 3 Jun 2005 19:36:07 +0000 Subject: [PATCH] Fixed an signed/unsigned warning. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5393 d7cf8633-e32d-0410-b094-e92efae38249 --- netconn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netconn.c b/netconn.c index d9de9d96..0b7e0eb1 100755 --- a/netconn.c +++ b/netconn.c @@ -1234,7 +1234,7 @@ void NetConn_QueryQueueFrame(void) continue; } - if( entry->querycounter != net_slist_maxtries.integer ) + if( entry->querycounter != (unsigned) net_slist_maxtries.integer ) { lhnetaddress_t address; int socket; -- 2.39.2