From: hniksic Date: Tue, 21 Nov 2000 03:08:41 +0000 (-0800) Subject: [svn] Remove stray debugging statement. X-Git-Tag: v1.13~2367 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=45eee9e56cdf9e0fbc8be41e54878a2df0b1a3be [svn] Remove stray debugging statement. --- diff --git a/src/hash.c b/src/hash.c index 2bbb0a12..0749f57b 100644 --- a/src/hash.c +++ b/src/hash.c @@ -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));