From: Naoki Wake Date: Tue, 19 Aug 2025 01:46:08 +0000 (-0700) Subject: kill: usage: fix wrapped indent in -l/--list description X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e08ca363b85f66b0a6e4a45aaebcc0eb57ec966c;p=thirdparty%2Futil-linux.git kill: usage: fix wrapped indent in -l/--list description Increase the indentation of the continuation line from one to two spaces to match the common util-linux help style (see Documentation/howto-usage-function.txt). This touches a translatable string. Whitespace-only change; no functional impact. Signed-off-by: Naoki Wake --- diff --git a/misc-utils/kill.c b/misc-utils/kill.c index 81dd5f191..629637c90 100644 --- a/misc-utils/kill.c +++ b/misc-utils/kill.c @@ -280,7 +280,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -p, --pid print pids without signaling them\n"), out); fputs(_(" -l, --list[=|=0x]\n" " list signal names, convert a signal number to a name,\n" - " or convert a signal mask to names\n"), out); + " or convert a signal mask to names\n"), out); fputs(_(" -L, --table list signal names and numbers\n"), out); fputs(_(" -r, --require-handler do not send signal if signal handler is not present\n"), out); fputs(_(" -d, --show-process-state \n"