From: Andre Noll Date: Sat, 4 Nov 2017 12:13:48 +0000 (+0100) Subject: show_subcommand_summary(): Increase column width. X-Git-Tag: v1.0.0~18^2 X-Git-Url: http://git.tuebingen.mpg.de/?p=dss.git;a=commitdiff_plain;h=8faa178794f36d419e9146c0deb0eb11fec2d074 show_subcommand_summary(): Increase column width. Since the new configtest command is 10 characters long, there was no whitespace between the command name and the short description. --- diff --git a/dss.c b/dss.c index e0b38a4..f80fd39 100644 --- 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("%-10s%s\n", name, purpose); + printf("%-11s%s\n", name, purpose); } exit(EXIT_SUCCESS); }