summaryrefslogtreecommitdiff
path: root/src/elflint.c
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2018-05-15 23:18:43 +0300
committerMark Wielaard <mark@klomp.org>2018-05-15 22:22:17 +0200
commit5e1a9f18aadf4804323ad470e33ddcd17650bc38 (patch)
tree00c24a0e10f74a3bdf627203375b59123dabb3ba /src/elflint.c
parent9279076c5149ce041b3720dac002f176a5cbc3b2 (diff)
downloadelfutils-5e1a9f18aadf4804323ad470e33ddcd17650bc38.tar.gz
elflint: fix typo in error diagnostics
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Diffstat (limited to 'src/elflint.c')
-rw-r--r--src/elflint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elflint.c b/src/elflint.c
index fb40fe7f..0a26d97d 100644
--- a/src/elflint.c
+++ b/src/elflint.c
@@ -376,9 +376,9 @@ check_elf_header (Ebl *ebl, GElf_Ehdr *ehdr, size_t size)
EI_OSABI,
ebl_osabi_name (ebl, ehdr->e_ident[EI_OSABI], buf, sizeof (buf)));
- /* No ABI versions other than zero supported either. */
+ /* No ABI versions other than zero are supported either. */
if (ehdr->e_ident[EI_ABIVERSION] != 0)
- ERROR (gettext ("unsupport ABI version e_ident[%d] == %d\n"),
+ ERROR (gettext ("unsupported ABI version e_ident[%d] == %d\n"),
EI_ABIVERSION, ehdr->e_ident[EI_ABIVERSION]);
for (cnt = EI_PAD; cnt < EI_NIDENT; ++cnt)