diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-05-23 23:56:22 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-05-23 23:56:22 +0000 |
commit | e90fdc1abd8cbaa9aa2117d8671c1ee9f5436b56 (patch) | |
tree | 6e0d452179d13879332ba0b21aa658d8e1547929 | |
parent | 7dbd117d8700b86b258da7e2aea2b132e1c1fae0 (diff) | |
download | gdb-e90fdc1abd8cbaa9aa2117d8671c1ee9f5436b56.zip gdb-e90fdc1abd8cbaa9aa2117d8671c1ee9f5436b56.tar.gz gdb-e90fdc1abd8cbaa9aa2117d8671c1ee9f5436b56.tar.bz2 |
* elf64-sparc.c (sparc64_elf_slurp_reloc_table): Fix typo
s/ENTIRES/ENTRIES/.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf64-sparc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 16a3519..f0b4252 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2001-05-23 Alexandre Oliva <aoliva@redhat.com> + + * elf64-sparc.c (sparc64_elf_slurp_reloc_table): Fix typo + s/ENTIRES/ENTRIES/. + 2001-05-23 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> * reloc.c (bfd_reloc_code_real): Add MIPS ELF64 relocations. diff --git a/bfd/elf64-sparc.c b/bfd/elf64-sparc.c index 295bd2f..33e75ff 100644 --- a/bfd/elf64-sparc.c +++ b/bfd/elf64-sparc.c @@ -1902,7 +1902,7 @@ sparc64_elf_relocate_section (output_bfd, info, input_bfd, input_section, sgot = splt = sreloc = NULL; rel = relocs; - relend = relocs + NUM_SHDR_ENTIRES (& elf_section_data (input_section)->rel_hdr); + relend = relocs + NUM_SHDR_ENTRIES (& elf_section_data (input_section)->rel_hdr); for (; rel < relend; rel++) { int r_type; |