summaryrefslogtreecommitdiff
path: root/include/bfdlink.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2003-12-02 23:00:00 +0000
committerAlan Modra <amodra@bigpond.net.au>2003-12-02 23:00:00 +0000
commitc0cf75c7be9a8451ac69880b9a806a676dbdbb19 (patch)
treed343cafe9a097adef484fecb22e53055f9b51bcb /include/bfdlink.h
parent397626c3420cf204765be7a44a4deceba92bacf9 (diff)
downloadbinutils-redhat-c0cf75c7be9a8451ac69880b9a806a676dbdbb19.tar.gz
Rename bfd_link_hash_entry field "next" -> "und_next".
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r--include/bfdlink.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/bfdlink.h b/include/bfdlink.h
index 51bbd5e492..f31046dfd1 100644
--- a/include/bfdlink.h
+++ b/include/bfdlink.h
@@ -81,6 +81,7 @@ struct bfd_link_hash_entry
{
/* Base hash table entry structure. */
struct bfd_hash_entry root;
+
/* Type of this entry. */
enum bfd_link_hash_type type;
@@ -102,7 +103,8 @@ struct bfd_link_hash_entry
symbol is undefined and becomes defined, this field will
automatically be non-NULL since the symbol will have been on the
undefined symbol list. */
- struct bfd_link_hash_entry *next;
+ struct bfd_link_hash_entry *und_next;
+
/* A union of information depending upon the type. */
union
{