From: Karel Zak Date: Fri, 8 Nov 2019 10:32:18 +0000 (+0100) Subject: renice: fix arguments description in --help X-Git-Tag: v2.35-rc1~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=390ba85c78cc9f78a00b3141e5f51a0603f57997;p=thirdparty%2Futil-linux.git renice: fix arguments description in --help The --{pid,pgrp,user} options does not have arguments. Reported-by: Stephane Chazelas Signed-off-by: Karel Zak --- diff --git a/sys-utils/renice.c b/sys-utils/renice.c index ab23444aa8..080b86e0bb 100644 --- a/sys-utils/renice.c +++ b/sys-utils/renice.c @@ -69,9 +69,9 @@ static void __attribute__((__noreturn__)) usage(void) fputs(USAGE_OPTIONS, 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); + fputs(_(" -p, --pid interpret arguments as process ID (default)\n"), out); + fputs(_(" -g, --pgrp interpret arguments as process group ID\n"), out); + fputs(_(" -u, --user interpret arguments as username or user ID\n"), out); fputs(USAGE_SEPARATOR, out); printf(USAGE_HELP_OPTIONS(24)); printf(USAGE_MAN_TAIL("renice(1)"));