summaryrefslogtreecommitdiff
path: root/binutils/binemul.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2007-06-27 11:54:10 +0000
committerAlan Modra <amodra@gmail.com>2007-06-27 11:54:10 +0000
commitcc481421d02b8d2b7881bdf12e469e23aa9021e7 (patch)
tree14bdb219306b20261e61e055a241c23291c4a7f8 /binutils/binemul.c
parent4105de343e714e0096723905ada442f1524776a6 (diff)
bfd/
* bfd.c (struct bfd): Rename "next" to "archive_next". * archive.c: Rename uses throughout file. * archive64.c: Likewise. * coff-rs6000.c: Likewise. * ecoff.c: Likewise. * som.c: Likewise. * bfd-in2.h: Regenerate. binutils/ * ar.c: Rename uses of bfd.next to bfd.archive_next throughout. * arsup.c: Likewise. * binemul.c: Likewise. * objcopy.c: Likewise. * dlltool.c: Likewise. ld/ * pe-dll.c: Rename uses of bfd.next to bfd.archive_next throughout.
Diffstat (limited to 'binutils/binemul.c')
-rw-r--r--binutils/binemul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/binemul.c b/binutils/binemul.c
index 7dac32dd11..83740d0d6a 100644
--- a/binutils/binemul.c
+++ b/binutils/binemul.c
@@ -58,7 +58,7 @@ ar_emul_default_append (bfd **after_bfd, char *file_name,
AR_EMUL_ELEMENT_CHECK (*after_bfd, file_name);
AR_EMUL_APPEND_PRINT_VERBOSE (verbose, file_name);
- (*after_bfd)->next = temp;
+ (*after_bfd)->archive_next = temp;
return TRUE;
}
@@ -84,7 +84,7 @@ ar_emul_default_replace (bfd **after_bfd, char *file_name,
AR_EMUL_ELEMENT_CHECK (*after_bfd, file_name);
AR_EMUL_REPLACE_PRINT_VERBOSE (verbose, file_name);
- (*after_bfd)->next = temp;
+ (*after_bfd)->archive_next = temp;
return TRUE;
}