From 093a9ce67ab4689bbb8d41403a0e3b3ace4eed02 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 6 Jun 2006 03:04:12 +0000 Subject: * hash.c (bfd_hash_lookup): Correct stray line. --- bfd/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bfd/hash.c') diff --git a/bfd/hash.c b/bfd/hash.c index ed0a10d619..3cc4f79644 100644 --- a/bfd/hash.c +++ b/bfd/hash.c @@ -455,7 +455,6 @@ bfd_hash_lookup (struct bfd_hash_table *table, if (copy) { char *new; - table->count ++; new = objalloc_alloc ((struct objalloc *) table->memory, len + 1); if (!new) @@ -470,6 +469,7 @@ bfd_hash_lookup (struct bfd_hash_table *table, hashp->hash = hash; hashp->next = table->table[index]; table->table[index] = hashp; + table->count++; if (table->count > table->size * 3 / 4) { -- cgit v1.2.1