diff options
author | Alan Modra <amodra@gmail.com> | 2001-08-20 02:14:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-08-20 02:14:50 +0000 |
commit | bba1a0c06251b064c5be78ff3e82b568e6ce0037 (patch) | |
tree | 67f04501f7746ddc4454e45bcbee1e38a53bbfec /ld/emultempl/hppaelf.em | |
parent | c0c330a70f2a352d6bfe279336c8337c3d670dba (diff) | |
download | gdb-bba1a0c06251b064c5be78ff3e82b568e6ce0037.zip gdb-bba1a0c06251b064c5be78ff3e82b568e6ce0037.tar.gz 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.em | 2 |
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) { |