]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Fixed a warning about an uninitialized variable
authormolivier <molivier@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 3 Jan 2005 14:22:35 +0000 (14:22 +0000)
committermolivier <molivier@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 3 Jan 2005 14:22:35 +0000 (14:22 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4896 d7cf8633-e32d-0410-b094-e92efae38249

netconn.c

index e6dd8a773bdc1e3f6be2824cb57896735d5a5119..d9c051f9bf2e000cf8be6a5f5b2a8ca22cf4e810 100755 (executable)
--- a/netconn.c
+++ b/netconn.c
@@ -125,7 +125,7 @@ static void _HostCache_ViewSet_Remove( int index )
 // returns true if A should be inserted before B
 static qboolean _HostCache_SortTest( hostcache_t *A, hostcache_t *B )
 {
-       int result; // > 0 if for numbers A > B and for text if A < B 
+       int result = 0; // > 0 if for numbers A > B and for text if A < B 
 
        if( hostcache_sortbyfield == HCIF_PING )
                result = A->info.ping - B->info.ping;