From 6310a9fabc096817dd0e85badb6f29e7d1ca96bd Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Fri, 3 May 2024 15:26:55 +0200 Subject: [PATCH] Fix alignment of profile listing --- src/configfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configfile.c b/src/configfile.c index db45146..a584bf1 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -647,7 +647,7 @@ void config_list_targets(void) { continue; } - printf("%-20s ", group[i]); + printf("%-19s ", group[i]); if (j++ % 4 == 0) { putchar('\n');