From: Benno Schulenberg Date: Mon, 14 Jun 2010 18:12:56 +0000 (+0200) Subject: lscpu: fix typo, "faild" to "failed" X-Git-Tag: v2.18-rc2~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8b25f62540b873a7808e619561c46cee09b67e4;p=thirdparty%2Futil-linux.git lscpu: fix typo, "faild" to "failed" Signed-off-by: Benno Schulenberg --- diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index 72d1054b92..a2401c78d5 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -260,7 +260,7 @@ path_cpuset(const char *path, ...) err(EXIT_FAILURE, _("failed to callocate cpu set")); if (cpumask_parse(buf, set, setsize)) - errx(EXIT_FAILURE, _("faild to parse CPU mask %s"), buf); + errx(EXIT_FAILURE, _("failed to parse CPU mask %s"), buf); return set; }