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/elf-bfd.h | |
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/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 9d76706..238a6d6 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -354,7 +354,7 @@ struct elf_size_info { void (*write_relocs) PARAMS ((bfd *, asection *, PTR)); void (*swap_symbol_in) - PARAMS ((bfd *, const PTR *, const PTR *, Elf_Internal_Sym *)); + PARAMS ((bfd *, const PTR, const PTR, Elf_Internal_Sym *)); void (*swap_symbol_out) PARAMS ((bfd *, const Elf_Internal_Sym *, PTR, PTR)); boolean (*slurp_reloc_table) @@ -1443,7 +1443,7 @@ extern boolean bfd_elf32_bfd_final_link PARAMS ((bfd *, struct bfd_link_info *)); extern void bfd_elf32_swap_symbol_in - PARAMS ((bfd *, const PTR *, const PTR *, Elf_Internal_Sym *)); + PARAMS ((bfd *, const PTR, const PTR, Elf_Internal_Sym *)); extern void bfd_elf32_swap_symbol_out PARAMS ((bfd *, const Elf_Internal_Sym *, PTR, PTR)); extern void bfd_elf32_swap_reloc_in @@ -1495,7 +1495,7 @@ extern boolean bfd_elf64_bfd_final_link PARAMS ((bfd *, struct bfd_link_info *)); extern void bfd_elf64_swap_symbol_in - PARAMS ((bfd *, const PTR *, const PTR *, Elf_Internal_Sym *)); + PARAMS ((bfd *, const PTR, const PTR, Elf_Internal_Sym *)); extern void bfd_elf64_swap_symbol_out PARAMS ((bfd *, const Elf_Internal_Sym *, PTR, PTR)); extern void bfd_elf64_swap_reloc_in |