From afee237e6c211e6a58607cb44e76cf1b1a4a8a4b Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sat, 15 Feb 2025 17:18:39 +0100 Subject: [PATCH] textual: make two incorrect synopses identical to a better one Signed-off-by: Benno Schulenberg --- sys-utils/setpgid.c | 2 +- sys-utils/setsid.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-utils/setpgid.c b/sys-utils/setpgid.c index 4bcaefad2..a1708d62d 100644 --- a/sys-utils/setpgid.c +++ b/sys-utils/setpgid.c @@ -17,7 +17,7 @@ static void __attribute__((__noreturn__)) usage(void) FILE *out = stdout; fputs(USAGE_HEADER, out); fprintf(out, _( - " %s [options] [arguments ...]\n"), + " %s [options] [...]\n"), program_invocation_short_name); fputs(USAGE_SEPARATOR, out); diff --git a/sys-utils/setsid.c b/sys-utils/setsid.c index 5ccfd0ff1..0a7fdbed0 100644 --- a/sys-utils/setsid.c +++ b/sys-utils/setsid.c @@ -32,7 +32,7 @@ static void __attribute__((__noreturn__)) usage(void) FILE *out = stdout; fputs(USAGE_HEADER, out); fprintf(out, _( - " %s [options] [arguments ...]\n"), + " %s [options] [...]\n"), program_invocation_short_name); fputs(USAGE_SEPARATOR, out); -- 2.47.3