diff options
author | Alan Modra <amodra@gmail.com> | 2001-10-17 12:01:05 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-10-17 12:01:05 +0000 |
commit | 973ffd6335bb35d78d2ea2b844019f38ac9dbba5 (patch) | |
tree | a548469d1bf253352b594add8587d718e094299d /bfd/pdp11.c | |
parent | 1ba7c32c230bcfb82b8a052d8fc4f9d4b7c0de2d (diff) | |
download | binutils-973ffd6335bb35d78d2ea2b844019f38ac9dbba5.tar.gz binutils-973ffd6335bb35d78d2ea2b844019f38ac9dbba5.tar.bz2 binutils-973ffd6335bb35d78d2ea2b844019f38ac9dbba5.zip |
* elf-m10200.c (mn10200_elf_relax_section): Cast assignment to
Elf_Internal_Shdr.contents now that it's no longer a PTR.
* elf-m10300.c (mn10300_elf_relax_section): Likewise.
* elf32-h8300.c (elf32_h8_relax_section): Likewise.
* elf32-m68k.c (bfd_m68k_elf32_create_embedded_relocs): Likewise.
* elf32-sh.c (sh_elf_relax_section): Likewise.
* elf64-alpha.c (elf64_alpha_relax_section): Likewise.
* elfxx-ia64.c (elfNN_ia64_relax_section): Likewise.
* elf.c (setup_group): Warning fixes.
* elflink.h (elf_link_sort_relocs): Likewise.
* pdp11.c (slurp_reloc_table): Likewise.
Diffstat (limited to 'bfd/pdp11.c')
-rw-r--r-- | bfd/pdp11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/pdp11.c b/bfd/pdp11.c index 265c159bd3a..2c08497594a 100644 --- a/bfd/pdp11.c +++ b/bfd/pdp11.c @@ -2247,7 +2247,7 @@ NAME(aout,slurp_reloc_table) (abfd, asect, symbols) { int x; - x = GET_WORD (abfd, relocs + each_size * counter); + x = GET_WORD (abfd, (char *) relocs + each_size * counter); if (x != 0) real_count++; } |