aboutsummaryrefslogtreecommitdiff
path: root/binutils/readelf.c
diff options
context:
space:
mode:
authorYuri Chornoivan <yurchor@mageia.org>2020-01-19 16:24:06 +0200
committerAlan Modra <amodra@gmail.com>2020-01-22 17:14:08 +1030
commitc48acf6f26713427fb6870a8551a89ac12838e7b (patch)
tree951a518a5b015cbc60b85efac0cc40d0c203613d /binutils/readelf.c
parent1e1613647fc5da78f7924f8264b09eeed6362987 (diff)
downloadfsf-binutils-gdb-c48acf6f26713427fb6870a8551a89ac12838e7b.zip
fsf-binutils-gdb-c48acf6f26713427fb6870a8551a89ac12838e7b.tar.gz
fsf-binutils-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 'binutils/readelf.c')
-rw-r--r--binutils/readelf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 6b5bebe..4dcac96 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -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>");
}
}