aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/pe.em
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2001-08-20 02:14:50 +0000
committerAlan Modra <amodra@gmail.com>2001-08-20 02:14:50 +0000
commitbba1a0c06251b064c5be78ff3e82b568e6ce0037 (patch)
tree67f04501f7746ddc4454e45bcbee1e38a53bbfec /ld/emultempl/pe.em
parentc0c330a70f2a352d6bfe279336c8337c3d670dba (diff)
downloadfsf-binutils-gdb-bba1a0c06251b064c5be78ff3e82b568e6ce0037.zip
fsf-binutils-gdb-bba1a0c06251b064c5be78ff3e82b568e6ce0037.tar.gz
fsf-binutils-gdb-bba1a0c06251b064c5be78ff3e82b568e6ce0037.tar.bz2
* ldlang.c: When traversing lang_statement_union_type lists,
consistently use "header.next" rather than "next". * mpw-eppcmac.c: Likewise. * emultempl/beos.em: Likewise. * emultempl/hppaelf.em: Likewise. * emultempl/pe.em: Likewise. * ldlang.h (union lang_statement_union): Remove "next" field.
Diffstat (limited to 'ld/emultempl/pe.em')
-rw-r--r--ld/emultempl/pe.em4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em
index fce661e..0303732 100644
--- a/ld/emultempl/pe.em
+++ b/ld/emultempl/pe.em
@@ -1703,7 +1703,7 @@ gld_${EMULATION_NAME}_place_orphan (file, s)
sections. */
found_dollar = false;
- for ( ; *pl != NULL; pl = &(*pl)->next)
+ for ( ; *pl != NULL; pl = &(*pl)->header.next)
{
lang_input_section_type *ls;
const char *lname;
@@ -1730,7 +1730,7 @@ gld_${EMULATION_NAME}_place_orphan (file, s)
if (add_child.head != NULL)
{
- add_child.head->next = *pl;
+ add_child.head->header.next = *pl;
*pl = add_child.head;
}
}