]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Fixed an signed/unsigned warning.
authorblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 3 Jun 2005 19:36:07 +0000 (19:36 +0000)
committerblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 3 Jun 2005 19:36:07 +0000 (19:36 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5393 d7cf8633-e32d-0410-b094-e92efae38249

netconn.c

index d9de9d9656323a3d076fa6cdd48cad30da5379e0..0b7e0eb1148f07c879afa344c4edce42fad2f385 100755 (executable)
--- 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;