diff options
Diffstat (limited to 'ld/emultempl/pe.em')
-rw-r--r-- | ld/emultempl/pe.em | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em index b014257..b963d03 100644 --- a/ld/emultempl/pe.em +++ b/ld/emultempl/pe.em @@ -1612,7 +1612,7 @@ gld_${EMULATION_NAME}_finish (void) default linker script using wildcards, and are sorted by sort_sections. */ -static bfd_boolean +static lang_output_section_statement_type * gld_${EMULATION_NAME}_place_orphan (asection *s, const char *secname, int constraint) @@ -1768,7 +1768,7 @@ gld_${EMULATION_NAME}_place_orphan (asection *s, } } - return TRUE; + return os; } static bfd_boolean |