diff options
author | Alan Modra <amodra@gmail.com> | 2002-06-04 00:51:08 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-06-04 00:51:08 +0000 |
commit | 90937f86aae6f5741008ccb551ac7cb3aad86ba3 (patch) | |
tree | 91aca1ef84852eaf3bd66dfdbd0629b72496356a /bfd/elf.c | |
parent | 0f154cbd1c2934ce6bdf195833941e51c4b2df4b (diff) | |
download | gdb-90937f86aae6f5741008ccb551ac7cb3aad86ba3.zip gdb-90937f86aae6f5741008ccb551ac7cb3aad86ba3.tar.gz gdb-90937f86aae6f5741008ccb551ac7cb3aad86ba3.tar.bz2 |
* elf.c (bfd_section_from_shdr): Make "name" const.
* elf-bfd.h (elf_backend_section_from_shdr): Likewise.
* elf32-i370.c (i370_elf_section_from_shdr): Likewise.
* elf32-ppc.c (ppc_elf_section_from_shdr): Likewise.
* elf32-sh64.c (sh64_backend_section_from_shdr): Likewise.
* elf32-v850.c (v850_elf_section_from_shdr): Likewise.
* elf64-alpha.c (elf64_alpha_section_from_shdr): Likewise.
* elf64-hppa.c (elf64_hppa_section_from_shdr): Likewise.
* elf64-ppc.c (ppc64_elf_section_from_shdr): Likewise.
* elfxx-ia64.c (elfNN_ia64_section_from_shdr): Likewise.
* elfxx-mips.c (_bfd_mips_elf_section_from_shdr): Likewise.
* elfxx-mips.h (_bfd_mips_elf_section_from_shdr): Likewise.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1576,7 +1576,7 @@ bfd_section_from_shdr (abfd, shindex) Elf_Internal_Shdr *hdr = elf_elfsections (abfd)[shindex]; Elf_Internal_Ehdr *ehdr = elf_elfheader (abfd); struct elf_backend_data *bed = get_elf_backend_data (abfd); - char *name; + const char *name; name = elf_string_from_elf_strtab (abfd, hdr->sh_name); |