From 1d300634c5550043c0b80a22f8665d305ff079f4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 6 Feb 2024 10:07:12 -0500 Subject: Use two spaces instead of a tab character for main program's argument listing. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index f196701..a2d6611 100644 --- a/src/main.c +++ b/src/main.c @@ -101,7 +101,7 @@ static void usage(char *progname) { strcat(opt_short, " "); } - sprintf(tmp, "\t%%-%ds\t%%s\t\t%%s", width + 4); + sprintf(tmp, " %%-%ds\t%%s\t\t%%s", width + 4); sprintf(output, tmp, opt_long, opt_short, long_options_help[x]); puts(output); } -- cgit