diff options
author | Alan Modra <amodra@gmail.com> | 2002-06-06 00:29:22 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-06-06 00:29:22 +0000 |
commit | f8ecb12b16adaae13e187352852113cda9c5394d (patch) | |
tree | 00b1dd3354b7a876d1e14131e9a05d62513edacf /bfd/elf64-ppc.c | |
parent | a1c1c00904a9c79bd728b1e35fef3632db61a186 (diff) | |
download | gdb-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/elf64-ppc.c')
-rw-r--r-- | bfd/elf64-ppc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index eb0f4d3..d8ac56e 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -4594,8 +4594,8 @@ get_local_syms (input_bfd, htab) isym = local_syms, shndx = shndx_buf; esym < end_sy; esym++, isym++, shndx = (shndx ? shndx + 1 : NULL)) - bfd_elf64_swap_symbol_in (input_bfd, (const PTR *) esym, - (const PTR *) shndx, isym); + bfd_elf64_swap_symbol_in (input_bfd, (const PTR) esym, + (const PTR) shndx, isym); /* Now we can free the external symbols. */ free (shndx_buf); |