From 8faa178794f36d419e9146c0deb0eb11fec2d074 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 4 Nov 2017 13:13:48 +0100 Subject: [PATCH] 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. --- dss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2