]> sjero.net Git - wget/blobdiff - src/hash.c
Dependency improvements (but still needs some work).
[wget] / src / hash.c
index f8b3c11faa4242d463c2ddef7d35fb5988b6872f..1e19fd63dc234283ce105d0e3e68b891a4ea303b 100644 (file)
@@ -31,8 +31,6 @@ as that of the covered work.  */
 /* With -DSTANDALONE, this file can be compiled outside Wget source
    tree.  To test, also use -DTEST.  */
 
-#define USE_GNULIB_ALLOC
-
 #ifndef STANDALONE
 # include "wget.h"
 #endif
@@ -228,7 +226,7 @@ prime_size (int size, int *prime_offset)
     243370577, 316381771, 411296309, 534685237, 695090819, 903618083,
     1174703521, 1527114613, 1837299131, 2147483647
   };
-  int i;
+  size_t i;
 
   for (i = *prime_offset; i < countof (primes); i++)
     if (primes[i] >= size)