summaryrefslogtreecommitdiffstats
path: root/sys-utils/lscpu.c
diff options
context:
space:
mode:
authorBenno Schulenberg2010-06-14 20:12:56 +0200
committerKarel Zak2010-06-15 12:55:17 +0200
commitd8b25f62540b873a7808e619561c46cee09b67e4 (patch)
treedca8df462eb7d40ee15e2a8d0c609ba571b41d3b /sys-utils/lscpu.c
parentfdisk: remove erroneous <size> argument from -u option in help text (diff)
downloadkernel-qcow2-util-linux-d8b25f62540b873a7808e619561c46cee09b67e4.tar.gz
kernel-qcow2-util-linux-d8b25f62540b873a7808e619561c46cee09b67e4.tar.xz
kernel-qcow2-util-linux-d8b25f62540b873a7808e619561c46cee09b67e4.zip
lscpu: fix typo, "faild" to "failed"
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'sys-utils/lscpu.c')
-rw-r--r--sys-utils/lscpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c
index 72d1054b9..a2401c78d 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;
}