]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
bootclt: add missing column
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 19 May 2019 09:31:19 +0000 (11:31 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 19 May 2019 09:31:19 +0000 (11:31 +0200)
This got broken somehow in 44e6a5ef825.

src/boot/bootctl.c

index 9df181a10c957860d1b5dbc8b771f168455b61e2..57908641a05ef6004cff436bcb74af5d8b284676 100644 (file)
@@ -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());