diff options
author | Nick Clifton <nickc@redhat.com> | 2001-05-23 08:23:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-05-23 08:23:27 +0000 |
commit | d9bc7a4499c25b26971d80e2392a6da6e84cbe21 (patch) | |
tree | 1aaf6ffea75c9c46b0a162c38d9fec15951869a2 /bfd/elf32-i386.c | |
parent | 60edd2d3f1f08fff5dc35137a16c5ec4eaa8392e (diff) | |
download | gdb-d9bc7a4499c25b26971d80e2392a6da6e84cbe21.zip gdb-d9bc7a4499c25b26971d80e2392a6da6e84cbe21.tar.gz gdb-d9bc7a4499c25b26971d80e2392a6da6e84cbe21.tar.bz2 |
Replace sh_size/sh_entsize with NUM_SHDR_ENTRIES
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 f4e1e50..f43adcd 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -501,7 +501,7 @@ elf_i386_check_relocs (abfd, info, sec, relocs) r_symndx = ELF32_R_SYM (rel->r_info); - if (r_symndx >= symtab_hdr->sh_size / symtab_hdr->sh_entsize) + if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr)) { if (abfd->my_archive) (*_bfd_error_handler) (_("%s(%s): bad symbol index: %d"), |