projects
/
dss.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e22eda4
)
show_subcommand_summary(): Increase column width.
author
Andre Noll
<maan@tuebingen.mpg.de>
Sat, 4 Nov 2017 12:13:48 +0000
(13:13 +0100)
committer
Andre Noll
<maan@tuebingen.mpg.de>
Sat, 4 Nov 2017 12:13:48 +0000
(13:13 +0100)
Since the new configtest command is 10 characters long, there was no
whitespace between the command name and the short description.
dss.c
patch
|
blob
|
history
diff --git
a/dss.c
b/dss.c
index
e0b38a4
..
f80fd39
100644
(file)
--- a/
dss.c
+++ b/
dss.c
@@
-1744,7
+1744,7
@@
static void show_subcommand_summary(void)
for (i = 1; (cmd = lls_cmd(i, dss_suite)); i++) {
const char *name = lls_command_name(cmd);
const char *purpose = lls_purpose(cmd);
- printf("%-1
0
s%s\n", name, purpose);
+ printf("%-1
1
s%s\n", name, purpose);
}
exit(EXIT_SUCCESS);
}