summaryrefslogtreecommitdiffstats
path: root/sys-utils/lscpu.c
diff options
context:
space:
mode:
authorRuediger Meier2016-11-01 19:40:33 +0100
committerRuediger Meier2016-11-30 14:56:50 +0100
commit223939d95b086ee56b780e34d7abf1fe59afbeb2 (patch)
treec06939326c2a94e913322615c06ee5b13778e53c /sys-utils/lscpu.c
parenttests: update sfdisk output (diff)
downloadkernel-qcow2-util-linux-223939d95b086ee56b780e34d7abf1fe59afbeb2.tar.gz
kernel-qcow2-util-linux-223939d95b086ee56b780e34d7abf1fe59afbeb2.tar.xz
kernel-qcow2-util-linux-223939d95b086ee56b780e34d7abf1fe59afbeb2.zip
misc: spelling, always use "cannot" instead of "can not"
Just to be consistent ... Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'sys-utils/lscpu.c')
-rw-r--r--sys-utils/lscpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c
index bd702b0ae..e3e6ff65c 100644
--- a/sys-utils/lscpu.c
+++ b/sys-utils/lscpu.c
@@ -886,12 +886,12 @@ is_vmware_platform(void)
act.sa_flags = SA_SIGINFO;
if (sigaction(SIGSEGV, &act, &oact))
- err(EXIT_FAILURE, _("error: can not set signal handler"));
+ err(EXIT_FAILURE, _("cannot set signal handler"));
vmware_bdoor(&eax, &ebx, &ecx, &edx);
if (sigaction(SIGSEGV, &oact, NULL))
- err(EXIT_FAILURE, _("error: can not restore signal handler"));
+ err(EXIT_FAILURE, _("cannot restore signal handler"));
return eax != (uint32_t)-1 && ebx == VMWARE_BDOOR_MAGIC;
}