From 405b104df6978f1d3bed6c12c6cee93a215883bf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sun, 19 May 2019 11:31:19 +0200 Subject: [PATCH] bootclt: add missing column This got broken somehow in 44e6a5ef825. --- src/boot/bootctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 9df181a10c9..57908641a05 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -326,7 +326,7 @@ static int boot_entry_file_check(const char *root, const char *p) { static void boot_entry_file_list(const char *field, const char *root, const char *p, int *ret_status) { int status = boot_entry_file_check(root, p); - printf("%13s%s", strempty(field), field ? ":" : " "); + printf("%13s%s ", strempty(field), field ? ":" : " "); if (status < 0) { errno = -status; printf("%s%s%s (%m)\n", ansi_highlight_red(), p, ansi_normal()); -- 2.47.3