From: Karel Zak Date: Fri, 8 Nov 2019 10:22:57 +0000 (+0100) Subject: renice: fix --help text X-Git-Tag: v2.35-rc1~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb99f4ea79c2abbe9b0b20ef0a225b6ee5405f97;p=thirdparty%2Futil-linux.git renice: fix --help text The option [-n] in the code has no any meaning and the value is used as priority, not incrementally. Reported-by: Stephane Chazelas Signed-off-by: Karel Zak --- diff --git a/sys-utils/renice.c b/sys-utils/renice.c index fbce39a1f8..ab23444aa8 100644 --- a/sys-utils/renice.c +++ b/sys-utils/renice.c @@ -68,7 +68,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_("Alter the priority of running processes.\n"), out); fputs(USAGE_OPTIONS, out); - fputs(_(" -n, --priority specify the nice increment value\n"), out); + fputs(_(" -n, --priority specify the nice value\n"), out); fputs(_(" -p, --pid interpret argument as process ID (default)\n"), out); fputs(_(" -g, --pgrp interpret argument as process group ID\n"), out); fputs(_(" -u, --user | interpret argument as username or user ID\n"), out);