From: Andreas Schwab Date: Thu, 18 Sep 2003 09:17:27 +0000 (+0000) Subject: * simple.c (bfd_simple_get_relocated_section_contents): Use X-Git-Tag: gdb_6_0-2003-10-04-release~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=674aaa98485bf764036956a6c3627e9e0afe883e;p=thirdparty%2Fbinutils-gdb.git * simple.c (bfd_simple_get_relocated_section_contents): Use _bfd_generic_link_hash_table_create instead of bfd_link_hash_table_create. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2e1a2a391db..8f479ebbcf9 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2003-09-18 Andreas Schwab + + * simple.c (bfd_simple_get_relocated_section_contents): Use + _bfd_generic_link_hash_table_create instead of + bfd_link_hash_table_create. + 2003-06-20 Alan Modra * elf64-ppc.c (struct ppc_link_hash_table): Add top_id. diff --git a/bfd/simple.c b/bfd/simple.c index 0042e60a3f5..094c9fcac23 100644 --- a/bfd/simple.c +++ b/bfd/simple.c @@ -198,7 +198,7 @@ bfd_simple_get_relocated_section_contents (abfd, sec, outbuf, symbol_table) memset (&link_info, 0, sizeof (link_info)); link_info.input_bfds = abfd; - link_info.hash = bfd_link_hash_table_create (abfd); + link_info.hash = _bfd_generic_link_hash_table_create (abfd); link_info.callbacks = &callbacks; callbacks.warning = simple_dummy_warning; callbacks.undefined_symbol = simple_dummy_undefined_symbol;