From: Zbigniew Jędrzejewski-Szmek Date: Sun, 19 May 2019 09:31:19 +0000 (+0200) Subject: bootclt: add missing column X-Git-Tag: v243-rc1~404^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=405b104df6978f1d3bed6c12c6cee93a215883bf;p=thirdparty%2Fsystemd.git bootclt: add missing column This got broken somehow in 44e6a5ef825. --- 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());