mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Remove stray debugging statement.
This commit is contained in:
parent
6e598c81e3
commit
45eee9e56c
@ -300,7 +300,9 @@ grow_hash_table (struct hash_table *ht)
|
|||||||
int needed_size = prime_size (ht->count * 3);
|
int needed_size = prime_size (ht->count * 3);
|
||||||
ht->size = MAX (old_size, needed_size);
|
ht->size = MAX (old_size, needed_size);
|
||||||
|
|
||||||
|
#if 0
|
||||||
printf ("growing from %d to %d\n", old_size, ht->size);
|
printf ("growing from %d to %d\n", old_size, ht->size);
|
||||||
|
#endif
|
||||||
|
|
||||||
ht->mappings = xmalloc (ht->size * sizeof (struct mapping));
|
ht->mappings = xmalloc (ht->size * sizeof (struct mapping));
|
||||||
memset (ht->mappings, '\0', ht->size * sizeof (struct mapping));
|
memset (ht->mappings, '\0', ht->size * sizeof (struct mapping));
|
||||||
|
Loading…
Reference in New Issue
Block a user