diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-01-12 02:41:04 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-01-12 02:41:04 +0000 |
commit | 82b1edf7b9cf3aaa2bf75a55894690fbf2a1c32c (patch) | |
tree | 61ff3225d756c1a6e05742e57d6d59b8ee87681c /bfd/elf32-i386.c | |
parent | 280c564c7687440cc9662f262a8a3baedd979bba (diff) | |
download | gdb-82b1edf7b9cf3aaa2bf75a55894690fbf2a1c32c.zip gdb-82b1edf7b9cf3aaa2bf75a55894690fbf2a1c32c.tar.gz gdb-82b1edf7b9cf3aaa2bf75a55894690fbf2a1c32c.tar.bz2 |
Change "reloc_howto_type" typedef to be "const", since all uses of it are (or
should be) anyways.
Diffstat (limited to 'bfd/elf32-i386.c')
-rw-r--r-- | bfd/elf32-i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c index a80cf70..81d7540 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -973,7 +973,7 @@ elf_i386_relocate_section (output_bfd, info, input_bfd, input_section, for (; rel < relend; rel++) { int r_type; - const reloc_howto_type *howto; + reloc_howto_type *howto; long r_symndx; struct elf_link_hash_entry *h; Elf_Internal_Sym *sym; |