aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/hppaelf.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/hppaelf.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/hppaelf.em')
-rw-r--r--ld/emultempl/hppaelf.em2
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/emultempl/hppaelf.em b/ld/emultempl/hppaelf.em
index f367673..31ef43c 100644
--- a/ld/emultempl/hppaelf.em
+++ b/ld/emultempl/hppaelf.em
@@ -106,7 +106,7 @@ hook_in_stub (info, lp)
lang_statement_union_type *l;
boolean ret;
- for (; (l = *lp) != NULL; lp = &l->next)
+ for (; (l = *lp) != NULL; lp = &l->header.next)
{
switch (l->header.type)
{