aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf32-mips.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-06-06 00:29:22 +0000
committerAlan Modra <amodra@gmail.com>2002-06-06 00:29:22 +0000
commitf8ecb12b16adaae13e187352852113cda9c5394d (patch)
tree00b1dd3354b7a876d1e14131e9a05d62513edacf /bfd/elf32-mips.c
parenta1c1c00904a9c79bd728b1e35fef3632db61a186 (diff)
downloadgdb-f8ecb12b16adaae13e187352852113cda9c5394d.zip
gdb-f8ecb12b16adaae13e187352852113cda9c5394d.tar.gz
gdb-f8ecb12b16adaae13e187352852113cda9c5394d.tar.bz2
elf_swap_symbol_in args should be "const PTR", not "const PTR *".
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r--bfd/elf32-mips.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
index de9cf2f..9288738 100644
--- a/bfd/elf32-mips.c
+++ b/bfd/elf32-mips.c
@@ -1886,8 +1886,8 @@ bfd_mips_elf32_create_embedded_relocs (abfd, info, datasec, relsec, errmsg)
/* A local symbol. */
esym = extsyms + ELF32_R_SYM (irel->r_info);
shndx = shndx_buf + (shndx_buf ? ELF32_R_SYM (irel->r_info) : 0);
- bfd_elf32_swap_symbol_in (abfd, (const PTR *) esym,
- (const PTR *) shndx, &isym);
+ bfd_elf32_swap_symbol_in (abfd, (const PTR) esym, (const PTR) shndx,
+ &isym);
targetsec = bfd_section_from_elf_index (abfd, isym.st_shndx);
}