aboutsummaryrefslogtreecommitdiff
path: root/bfd/ecoff.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2003-12-02 23:00:00 +0000
committerAlan Modra <amodra@gmail.com>2003-12-02 23:00:00 +0000
commit6ad841a1833e6b301a53835c4d803ab47c801f15 (patch)
tree9d68b4ff3109ecad9454523a87781a19fbcc1e59 /bfd/ecoff.c
parentf6246aba72a56abc79a4176baad7f88fd12e562f (diff)
downloadfsf-binutils-gdb-6ad841a1833e6b301a53835c4d803ab47c801f15.zip
fsf-binutils-gdb-6ad841a1833e6b301a53835c4d803ab47c801f15.tar.gz
fsf-binutils-gdb-6ad841a1833e6b301a53835c4d803ab47c801f15.tar.bz2
Rename bfd_link_hash_entry field "next" -> "und_next".
Diffstat (limited to 'bfd/ecoff.c')
-rw-r--r--bfd/ecoff.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/bfd/ecoff.c b/bfd/ecoff.c
index b9b1861..cfc5ae1 100644
--- a/bfd/ecoff.c
+++ b/bfd/ecoff.c
@@ -3566,9 +3566,9 @@ ecoff_link_add_archive_symbols (abfd, info)
entry if it is the tail, because that would lose any
entries we add to the list later on. */
if (*pundef != info->hash->undefs_tail)
- *pundef = (*pundef)->next;
+ *pundef = (*pundef)->und_next;
else
- pundef = &(*pundef)->next;
+ pundef = &(*pundef)->und_next;
continue;
}
@@ -3578,7 +3578,7 @@ ecoff_link_add_archive_symbols (abfd, info)
other object format. */
if (h->type != bfd_link_hash_undefined)
{
- pundef = &(*pundef)->next;
+ pundef = &(*pundef)->und_next;
continue;
}
@@ -3590,7 +3590,7 @@ ecoff_link_add_archive_symbols (abfd, info)
if (file_offset == 0)
{
/* Nothing in this slot. */
- pundef = &(*pundef)->next;
+ pundef = &(*pundef)->und_next;
continue;
}
@@ -3621,7 +3621,7 @@ ecoff_link_add_archive_symbols (abfd, info)
if (! found)
{
- pundef = &(*pundef)->next;
+ pundef = &(*pundef)->und_next;
continue;
}
@@ -3643,7 +3643,7 @@ ecoff_link_add_archive_symbols (abfd, info)
if (! ecoff_link_add_object_symbols (element, info))
return FALSE;
- pundef = &(*pundef)->next;
+ pundef = &(*pundef)->und_next;
}
return TRUE;