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.
This commit is contained in:
parent
5ebc08b005
commit
d05da6a8c2
2 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue