summaryrefslogtreecommitdiffstats
path: root/sys-utils/chcpu.c
diff options
context:
space:
mode:
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;
}