]> sjero.net Git - wget/blobdiff - src/hash.c
[svn] Renamed wget.h XDIGIT-related macros to (hopefully) clearer names.
[wget] / src / hash.c
index 854ef463237ece64d87ef7e12fb6a60ae059dc8b..eeb98c5fbbf595026ebc7f4497f704f57894a581 100644 (file)
@@ -205,7 +205,7 @@ prime_size (int size, int *prime_offset)
   };
   int i = *prime_offset;
 
-  for (; i < ARRAY_SIZE (primes); i++)
+  for (; i < countof (primes); i++)
     if (primes[i] >= size)
       {
        /* Set the offset to the next prime.  That is safe because,