From e08ca363b85f66b0a6e4a45aaebcc0eb57ec966c Mon Sep 17 00:00:00 2001 From: Naoki Wake Date: Mon, 18 Aug 2025 18:46:08 -0700 Subject: [PATCH] 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 --- misc-utils/kill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.47.3