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

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