]> sjero.net Git - wget/commitdiff
[svn] Remove stray debugging statement.
authorhniksic <devnull@localhost>
Tue, 21 Nov 2000 03:08:41 +0000 (19:08 -0800)
committerhniksic <devnull@localhost>
Tue, 21 Nov 2000 03:08:41 +0000 (19:08 -0800)
src/hash.c

index 2bbb0a12ac739ad843c7bb0411637b1d573ea666..0749f57bdb58cf35549c310a9078438ba3a3c0df 100644 (file)
@@ -300,7 +300,9 @@ grow_hash_table (struct hash_table *ht)
   int needed_size = prime_size (ht->count * 3);
   ht->size = MAX (old_size, needed_size);
 
+#if 0
   printf ("growing from %d to %d\n", old_size, ht->size);
+#endif
 
   ht->mappings = xmalloc (ht->size * sizeof (struct mapping));
   memset (ht->mappings, '\0', ht->size * sizeof (struct mapping));