aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-02-06 10:07:12 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-02-06 10:07:12 -0500
commit1d300634c5550043c0b80a22f8665d305ff079f4 (patch)
tree87ca3263e2a4a04f33210216842c7f198fc7b30e /src
parent2823057fbbf7dc9d30f66910a950a32ea31ad897 (diff)
downloadstasis-1d300634c5550043c0b80a22f8665d305ff079f4.tar.gz
Use two spaces instead of a tab character for main program's argument listing.
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
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);
}