From: Nick Clifton Date: Mon, 24 Sep 2001 21:16:47 +0000 (+0000) Subject: Fix thinko X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=85c774585e45889b3ce15d370b374fbadc878e54;p=binutils-gdb.git Fix thinko --- diff --git a/ld/ChangeLog b/ld/ChangeLog index a9899f78dc5..c94bbaa9fc1 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,9 +1,9 @@ -2001-09-24 Nick Clifton - - * pe-dll.c: Remove spurious prototype. - 2001-09-24 Charles Wilson + * 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 diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 3bce4da0e85..17b3f06d9e9 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -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);