1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-27 10:25:06 +03:00

bootclt: add missing column

This got broken somehow in 44e6a5ef82.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2019-05-19 11:31:19 +02:00
parent a188bcffc3
commit 405b104df6

View 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());