summaryrefslogtreecommitdiffstats
path: root/sys-utils/chcpu.c
diff options
context:
space:
mode:
authorBernhard Voelker2012-06-27 15:23:05 +0200
committerKarel Zak2012-07-09 16:56:30 +0200
commit7007991f6f49ede6a2b622e0c6cbad0579df5ea2 (patch)
tree2972ad4169ca57743994a1b7dff62b8d6b6d9f45 /sys-utils/chcpu.c
parentbuild-sys: add -Wredundant-decls (diff)
downloadkernel-qcow2-util-linux-7007991f6f49ede6a2b622e0c6cbad0579df5ea2.tar.gz
kernel-qcow2-util-linux-7007991f6f49ede6a2b622e0c6cbad0579df5ea2.tar.xz
kernel-qcow2-util-linux-7007991f6f49ede6a2b622e0c6cbad0579df5ea2.zip
docs: fix typos found by misspellings
The tool misspellings (https://github.com/lyda/misspell-check) detected several typos. Command used: $ git ls-files | grep -v ^po/ | misspellings -f - * Documentation/releases/v2.18-ReleaseNotes: Fix typo in news entry. * NEWS: Likewise. * config/texinfo.tex: Fix typo in comments. * libmount/src/context.c: Fix typo in comment. * libmount/src/fs.c: Likewise. * login-utils/login.c: Likewise. * login-utils.su.1: Fix typo in man page. * sys-utils/chcpu.c: Fix typo in error message. Signed-off-by: Bernhard Voelker <mail@bernhard-voelker.de>
Diffstat (limited to 'sys-utils/chcpu.c')
-rw-r--r--sys-utils/chcpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-utils/chcpu.c b/sys-utils/chcpu.c
index 999ea56c4..523e9c566 100644
--- a/sys-utils/chcpu.c
+++ b/sys-utils/chcpu.c
@@ -140,11 +140,11 @@ static int cpu_set_dispatch(int mode)
if (mode == 0) {
if (path_writestr("0", _PATH_SYS_CPU_DISPATCH) == -1)
err(EXIT_FAILURE, _("Failed to set horizontal dispatch mode"));
- printf(_("Succesfully set horizontal dispatching mode\n"));
+ printf(_("Successfully set horizontal dispatching mode\n"));
} else {
if (path_writestr("1", _PATH_SYS_CPU_DISPATCH) == -1)
err(EXIT_FAILURE, _("Failed to set vertical dispatch mode"));
- printf(_("Succesfully set vertical dispatching mode\n"));
+ printf(_("Successfully set vertical dispatching mode\n"));
}
return EXIT_SUCCESS;
}