PR25417, Fix minor typos
authorYuri Chornoivan <yurchor@mageia.org>
Sun, 19 Jan 2020 14:24:06 +0000 (16:24 +0200)
committerAlan Modra <amodra@gmail.com>
Wed, 22 Jan 2020 06:44:08 +0000 (17:14 +1030)
PR 25417
binutils/
* readelf.c (get_alpha_symbol_other): Fix error message typo.
ld/
* ldlang.c (ldlang_open_ctf): Fix error message typo.
* emultempl/z80elf.em (z80_elf_after_open): Likewise.

binutils/ChangeLog
binutils/readelf.c
ld/ChangeLog
ld/emultempl/z80elf.em
ld/ldlang.c

index 4953ebaa602ff3d99b3ad459dc9e8c49e1cd6b2f..72bbe59f23092eabc0e395e90000081bbb5cda74 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-22  Yuri Chornoivan  <yurchor@mageia.org>
+
+       PR 25417
+       * readelf.c (get_alpha_symbol_other): Fix error message typo.
+
 2020-01-20  Nick Clifton  <nickc@redhat.com>
 
        * po/pt.po: Updated Portuguese translation.
index 6b5bebe743f34a9ebeeb85943fbbcb87757bcba2..4dcac968ddf02dece5685ff69fefe94e90f30ee0 100644 (file)
@@ -11189,7 +11189,7 @@ get_alpha_symbol_other (unsigned int other)
     case STO_ALPHA_NOPV:       return "NOPV";
     case STO_ALPHA_STD_GPLOAD: return "STD GPLOAD";
     default:
-      error (_("Unrecognized alpah specific other value: %u"), other);
+      error (_("Unrecognized alpha specific other value: %u"), other);
       return _("<unknown>");
     }
 }
index 369ffee04ad7def50167d7ffe3f059baf36b0708..d8949bbc387e63585fc14db9ae7a1b3538c81c9e 100644 (file)
@@ -1,3 +1,9 @@
+2020-01-22  Yuri Chornoivan  <yurchor@mageia.org>
+
+       PR 25417
+       * ldlang.c (ldlang_open_ctf): Fix error message typo.
+       * emultempl/z80elf.em (z80_elf_after_open): Likewise.
+
 2020-01-21  H.J. Lu  <hongjiu.lu@intel.com>
 
        * testsuite/ld-elf/pr23900-1.d: Adjusted.
index 7a55fff92183369d93cf578f21c1bb921bf0d467..4b03e798d1b37d3ab16e031ab65658d9b379da6a 100644 (file)
@@ -48,7 +48,7 @@ z80_elf_after_open (void)
        {
          if ((new_mach == EF_Z80_MACH_R800 || mach == EF_Z80_MACH_R800) ||
              (new_mach == EF_Z80_MACH_GBZ80 || mach == EF_Z80_MACH_GBZ80))
-           einfo (_("%F%P: %pB: Istruction set of object files mismatched\n"),
+           einfo (_("%F%P: %pB: Instruction set of object files mismatched\n"),
                   abfd);
          else if (mach < new_mach)
            mach = new_mach;
index e100c0533cfb778860411bf17ff40a348d683e93..91c160b560455a173c6c73e32ff7cc7effe85570 100644 (file)
@@ -3659,7 +3659,7 @@ ldlang_open_ctf (void)
   if ((ctf_output = ctf_create (&err)) != NULL)
     return;
 
-  einfo (_("%P: warning: CTF output not created: `s'\n"),
+  einfo (_("%P: warning: CTF output not created: `%s'\n"),
         ctf_errmsg (err));
 
   LANG_FOR_EACH_INPUT_STATEMENT (errfile)