diff options
author | Alan Modra <amodra@bigpond.net.au> | 2001-08-20 02:14:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2001-08-20 02:14:50 +0000 |
commit | 45f614001a5f65f0306954abcf2779f071f7384a (patch) | |
tree | c2b8aefb5bfb9761ee89721dece8ce2da506928e /ld/emultempl/hppaelf.em | |
parent | e5e0e4f1470eb280df74678b0e4a2d1c063c0570 (diff) | |
download | binutils-redhat-45f614001a5f65f0306954abcf2779f071f7384a.tar.gz |
* 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 f367673e54..31ef43c369 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) { |