mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
Fix thinko
This commit is contained in:
@ -1,9 +1,9 @@
|
|||||||
2001-09-24 Nick Clifton <nickc@cambridge.redhat.com>
|
|
||||||
|
|
||||||
* pe-dll.c: Remove spurious prototype.
|
|
||||||
|
|
||||||
2001-09-24 Charles Wilson <cwilson@ece.gatech.edu>
|
2001-09-24 Charles Wilson <cwilson@ece.gatech.edu>
|
||||||
|
|
||||||
|
* pe-dll.c: Remove obsoleted declaration of
|
||||||
|
pe_get_data_import_dll_name.
|
||||||
|
(pe_create_import_fixup): Fix thinko.
|
||||||
|
|
||||||
* ld.texinfo(enable-auto-import): Clarify the explanation.
|
* ld.texinfo(enable-auto-import): Clarify the explanation.
|
||||||
|
|
||||||
2001-09-24 Nick Clifton <nickc@cambridge.redhat.com>
|
2001-09-24 Nick Clifton <nickc@cambridge.redhat.com>
|
||||||
|
@ -2066,7 +2066,7 @@ pe_create_import_fixup (rel)
|
|||||||
|
|
||||||
{
|
{
|
||||||
extern char * pe_data_import_dll;
|
extern char * pe_data_import_dll;
|
||||||
char * dll_symname = pe_data_import_dll ? "unknown" : pe_data_import_dll;
|
char * dll_symname = pe_data_import_dll ? pe_data_import_dll : "unknown";
|
||||||
|
|
||||||
bfd *b = make_import_fixup_entry (name, fixup_name, dll_symname,
|
bfd *b = make_import_fixup_entry (name, fixup_name, dll_symname,
|
||||||
output_bfd);
|
output_bfd);
|
||||||
|
Reference in New Issue
Block a user