From 0c412439a632871d1e94bc94cf3b226123ef61fc Mon Sep 17 00:00:00 2001 From: Emanuele Torre Date: Wed, 26 Jun 2024 09:43:43 +0200 Subject: [PATCH] sys-utils/setpgid: fix --help typo (foregound > foreground) + alignment Typo reported by @yurchor on github https://github.com/util-linux/util-linux/commit/f092076fecc7ada2911df1b34f75091573ac08a8#r139271937 --- sys-utils/setpgid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-utils/setpgid.c b/sys-utils/setpgid.c index 647654a07..4bcaefad2 100644 --- a/sys-utils/setpgid.c +++ b/sys-utils/setpgid.c @@ -24,9 +24,9 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_("Run a program in a new process group.\n"), out); fputs(USAGE_OPTIONS, out); - fputs(_(" -f, --foregound Make a foreground process group\n"), out); + fputs(_(" -f, --foreground Make a foreground process group\n"), out); - fprintf(out, USAGE_HELP_OPTIONS(16)); + fprintf(out, USAGE_HELP_OPTIONS(21)); fprintf(out, USAGE_MAN_TAIL("setpgid(1)")); exit(EXIT_SUCCESS); -- 2.47.3