]> sjero.net Git - wget/blobdiff - src/utils.c
Henri's -Wall patch.
[wget] / src / utils.c
index a6c84491605517a8f0af7637ff681c70e943340f..15e3f89ba392b726050e6ba7dccc4af502bca4a7 100644 (file)
@@ -267,7 +267,7 @@ concat_strings (const char *str0, ...)
 
   const char *next_str;
   int total_length = 0;
-  int argcount;
+  size_t argcount;
 
   /* Calculate the length of and allocate the resulting string. */
 
@@ -1386,7 +1386,7 @@ human_readable (HR_NUMTYPE n)
       'E',                      /* exabyte,  2^60 bytes */
     };
   static char buf[8];
-  int i;
+  size_t i;
 
   /* If the quantity is smaller than 1K, just print it. */
   if (n < 1024)