summaryrefslogtreecommitdiff
path: root/bfd/elf64-mmix.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2002-06-06 00:29:22 +0000
committerAlan Modra <amodra@bigpond.net.au>2002-06-06 00:29:22 +0000
commitd049207ea2d07a0a6c67c0a099bdb6e6ea20d30d (patch)
tree7f4a8d0d9893d305f82a08a61d1433a9e196e49b /bfd/elf64-mmix.c
parentfee480ec4fd03b907b4b73a82c1e5b27a02ddca9 (diff)
downloadgdb-d049207ea2d07a0a6c67c0a099bdb6e6ea20d30d.tar.gz
elf_swap_symbol_in args should be "const PTR", not "const PTR *".
Diffstat (limited to 'bfd/elf64-mmix.c')
-rw-r--r--bfd/elf64-mmix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf64-mmix.c b/bfd/elf64-mmix.c
index 729dfb84654..55ef061d645 100644
--- a/bfd/elf64-mmix.c
+++ b/bfd/elf64-mmix.c
@@ -2419,8 +2419,8 @@ mmix_elf_relax_section (abfd, sec, link_info, again)
esym = extsyms + ELF64_R_SYM (irel->r_info);
shndx = shndx_buf + (shndx_buf
? ELF64_R_SYM (irel->r_info) : 0);
- bfd_elf64_swap_symbol_in (abfd, (const PTR *) esym,
- (const PTR *) shndx, &isym);
+ bfd_elf64_swap_symbol_in (abfd, (const PTR) esym, (const PTR) shndx,
+ &isym);
if (isym.st_shndx == SHN_UNDEF)
sym_sec = bfd_und_section_ptr;