From 4629499e7fed6b67e03aa202da1e757160d63582 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 1 Mar 2019 16:05:14 +0100 Subject: [PATCH] bootctl: tweak 'list' output a bit Let's suppress the final newline in the list if it's the last entry we are outputting. --- src/boot/bootctl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 1e0d115fe3e..6c0885198ad 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -1214,7 +1214,8 @@ static int verb_list(int argc, char *argv[], void *userdata) { if (r < 0) return r; - puts(""); + if (n+1 < config.n_entries) + putchar('\n'); strv_remove(found_by_loader, config.entries[n].id); } @@ -1223,7 +1224,7 @@ static int verb_list(int argc, char *argv[], void *userdata) { if (!strv_isempty(found_by_loader)) { char **i; - printf("Automatic/Other Entries Found by Boot Loader:\n\n"); + printf("\nAutomatic/Other Entries Found by Boot Loader:\n\n"); STRV_FOREACH(i, found_by_loader) puts(*i); -- 2.47.3