fixed some signed/unsigned comparison warnings with -Wsign-compare
[reactos.git] / reactos / apps / utils / net / route / route.c
index 865d6dc..544aa4e 100644 (file)
@@ -36,7 +36,7 @@ int print_routes() {
     DWORD Error;
     ULONG Size = 0;
     char Destination[IPBUF], Gateway[IPBUF], Netmask[IPBUF];
-    int i;
+    unsigned int i;
 
     if( (Error = GetIpForwardTable( NULL, &Size, TRUE )) ==
        ERROR_INSUFFICIENT_BUFFER ) {