diff options
author | Yuri Chornovian <yurchor@ukr.net> | 2017-07-18 16:58:14 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-07-18 16:58:14 +0100 |
commit | de194d8575765da6c7905d09b8675c59fad035e9 (patch) | |
tree | b5d104395b4fb836d6b3a7687faa48d6a2544210 /binutils | |
parent | c5ed057625f886b14d9def3fa7488fd8bbbf7dd3 (diff) | |
download | fsf-binutils-gdb-de194d8575765da6c7905d09b8675c59fad035e9.zip fsf-binutils-gdb-de194d8575765da6c7905d09b8675c59fad035e9.tar.gz fsf-binutils-gdb-de194d8575765da6c7905d09b8675c59fad035e9.tar.bz2 |
Fix spelling typos.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 8 | ||||
-rw-r--r-- | binutils/coffgrok.c | 6 | ||||
-rw-r--r-- | binutils/readelf.c | 2 | ||||
-rw-r--r-- | binutils/stabs.c | 2 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/objcopy.exp | 2 |
5 files changed, 14 insertions, 6 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ed12494..d098082 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,13 @@ 2017-07-18 Nick Clifton <nickc@redhat.com> + PR 21775 + * coffgrok.c: Fix spelling typos. + * readelf.c: Likewise. + * stabs.c: Likewise. + * testsuite/binutils-all/objcopy.exp: Likewise. + +2017-07-18 Nick Clifton <nickc@redhat.com> + * po/sv.po: Updated Swedish translation. 2017-07-18 Hans-Peter Nilsson <hp@bitrange.com> diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c index 62cd1c4..01ff0e9 100644 --- a/binutils/coffgrok.c +++ b/binutils/coffgrok.c @@ -846,13 +846,13 @@ doit (void) case C_UNTAG: /* Various definition. */ if (top_scope == NULL) - fatal (_("Aggregate defintion encountered without a scope")); + fatal (_("Aggregate definition encountered without a scope")); i = do_define (i, top_scope); break; case C_EXT: case C_LABEL: if (file_scope == NULL) - fatal (_("Label defintion encountered without a file scope")); + fatal (_("Label definition encountered without a file scope")); i = do_define (i, file_scope); break; case C_STAT: @@ -860,7 +860,7 @@ doit (void) case C_AUTO: case C_REG: if (top_scope == NULL) - fatal (_("Variable defintion encountered without a scope")); + fatal (_("Variable definition encountered without a scope")); i = do_define (i, top_scope); break; case C_EOS: diff --git a/binutils/readelf.c b/binutils/readelf.c index 362c204..50055a9 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -6706,7 +6706,7 @@ process_section_groups (FILE * file) error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"), entry, i, elf_header.e_shnum - 1); if (num_group_errors == 10) - warn (_("Futher error messages about overlarge group section indicies suppressed\n")); + warn (_("Further error messages about overlarge group section indicies suppressed\n")); } continue; } diff --git a/binutils/stabs.c b/binutils/stabs.c index 3861f83..39905f2 100644 --- a/binutils/stabs.c +++ b/binutils/stabs.c @@ -995,7 +995,7 @@ parse_stab_string (void *dhandle, struct stab_handle *info, int stabtype, break; case 'T': - /* Struct, union, or enum tag. For GNU C++, this can be be followed + /* Struct, union, or enum tag. For GNU C++, this can be followed by 't' which means we are typedef'ing it as well. */ if (*p != 't') { diff --git a/binutils/testsuite/binutils-all/objcopy.exp b/binutils/testsuite/binutils-all/objcopy.exp index 6d57837..14e8f1d 100644 --- a/binutils/testsuite/binutils-all/objcopy.exp +++ b/binutils/testsuite/binutils-all/objcopy.exp @@ -842,7 +842,7 @@ proc keep_debug_symbols_and_test_copy { prog1 flags1 test1 prog2 flags2 test2 } } # Tests that in a debug only copy of a file the sections -# headers whoes types have been changed to NOBITS still +# headers whose types have been changed to NOBITS still # retain their sh_link fields. proc keep_debug_symbols_and_check_links { prog flags test } { |