Fix thinko
This commit is contained in:
parent
9cc16c3a6b
commit
85c774585e
2 changed files with 5 additions and 5 deletions
|
@ -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>
|
||||
|
||||
* 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.
|
||||
|
||||
2001-09-24 Nick Clifton <nickc@cambridge.redhat.com>
|
||||
|
|
|
@ -2066,7 +2066,7 @@ pe_create_import_fixup (rel)
|
|||
|
||||
{
|
||||
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,
|
||||
output_bfd);
|
||||
|
|
Loading…
Reference in a new issue