diff options
author | Fred Fish <fnf@specifix.com> | 2005-05-14 01:38:14 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2005-05-14 01:38:14 +0000 |
commit | f59f7c79edab80fcebf332a0b7f7c421dadeb81b (patch) | |
tree | 3d8c335e2c4a79bf05e777e17d669a1f0e641cb0 /binutils/readelf.c | |
parent | 2db3311b5a615265483e9558ea2719ef2f624865 (diff) | |
download | gdb-f59f7c79edab80fcebf332a0b7f7c421dadeb81b.zip gdb-f59f7c79edab80fcebf332a0b7f7c421dadeb81b.tar.gz gdb-f59f7c79edab80fcebf332a0b7f7c421dadeb81b.tar.bz2 |
2005-05-13 Fred Fish <fnf@specifixinc.com>
* readelf.c: Fix a couple of obvious comment typos,
'debug_str' -> 'debug_ranges' and proecess' -> 'process'.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index 4cf2aa9..3b086cb 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -7320,7 +7320,7 @@ load_debug_range (FILE *file) if (debug_range_contents != NULL) return; - /* Locate the .debug_str section. */ + /* Locate the .debug_ranges section. */ sec = find_section (".debug_ranges"); if (sec == NULL) return; @@ -8910,7 +8910,7 @@ process_debug_info (Elf_Internal_Shdr *section, unsigned char *start, } /* Set num_debug_info_entries here so that it can be used to check if - we need to proecess .debug_loc and .debug_ranges sections. */ + we need to process .debug_loc and .debug_ranges sections. */ if ((do_loc || do_debug_loc || do_debug_ranges) && num_debug_info_entries == 0) num_debug_info_entries = num_units; |