PR25417, Fix minor typos

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.
This commit is contained in:
Yuri Chornoivan 2020-01-19 16:24:06 +02:00 committed by Alan Modra
parent 1e1613647f
commit c48acf6f26
5 changed files with 14 additions and 3 deletions

View 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.

View 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>");
}
}

View 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.

View 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;

View 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)