diff options
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/merge.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 28d8bee..e9925a6 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-05-02 H.J. Lu <hongjiu.lu@intel.com> + + * merge.c (sec_merge_init): Call bfd_hash_table_init_n with + hash table size 16699 instead of bfd_hash_table_init. + 2005-05-01 Paul Brook <paul@codesourcery.com> * elflink.c (_bfd_elf_merge_symbol): Skip weak definitions if a strong diff --git a/bfd/merge.c b/bfd/merge.c index ccbf5b7..baaa2c6 100644 --- a/bfd/merge.c +++ b/bfd/merge.c @@ -241,7 +241,8 @@ sec_merge_init (unsigned int entsize, bfd_boolean strings) if (table == NULL) return NULL; - if (! bfd_hash_table_init (&table->table, sec_merge_hash_newfunc)) + if (! bfd_hash_table_init_n (&table->table, sec_merge_hash_newfunc, + 16699)) { free (table); return NULL; |