diff options
author | Yuri Chornoivan <yurchor@mageia.org> | 2020-01-19 16:24:06 +0200 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-01-22 17:14:08 +1030 |
commit | c48acf6f26713427fb6870a8551a89ac12838e7b (patch) | |
tree | 951a518a5b015cbc60b85efac0cc40d0c203613d /ld/emultempl | |
parent | 1e1613647fc5da78f7924f8264b09eeed6362987 (diff) | |
download | gdb-c48acf6f26713427fb6870a8551a89ac12838e7b.zip gdb-c48acf6f26713427fb6870a8551a89ac12838e7b.tar.gz gdb-c48acf6f26713427fb6870a8551a89ac12838e7b.tar.bz2 |
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.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/z80elf.em | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/emultempl/z80elf.em b/ld/emultempl/z80elf.em index 7a55fff..4b03e79 100644 --- a/ld/emultempl/z80elf.em +++ b/ld/emultempl/z80elf.em @@ -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; |