diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-08-17 16:09:02 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-08-17 16:09:02 +0000 |
commit | 10b6b556e09e3aab6f98b44d1c6c0c63ab5d99f6 (patch) | |
tree | 75c9580d1fc18a02a0048ad3650c8f090791401a /bfd/elf.c | |
parent | f6c44edcdc618ab5ecec3463263992829c4f3362 (diff) | |
download | gdb-10b6b556e09e3aab6f98b44d1c6c0c63ab5d99f6.tar.gz |
* elf.c (bfd_elf_get_elf_syms): Change type of `esym' to
`bfd_byte'.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf.c b/bfd/elf.c index 1582496a1db..a9db43bb82d 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -371,7 +371,7 @@ bfd_elf_get_elf_syms (ibfd, symtab_hdr, symcount, symoffset, { Elf_Internal_Shdr *shndx_hdr; PTR alloc_ext; - const PTR esym; + const bfd_byte *esym; Elf_External_Sym_Shndx *alloc_extshndx; Elf_External_Sym_Shndx *shndx; Elf_Internal_Sym *isym; |