From: Thomas Hindoe Paaboel Andersen Date: Wed, 18 Feb 2015 21:18:12 +0000 (+0100) Subject: systemd-boot: fix alignment of version in table X-Git-Tag: v219.0~632 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=04155c67139fdd983f08e61e8a56d27341a4ea72;ds=sidebyside systemd-boot: fix alignment of version in table --- diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index 7605c6532..0842d6d4e 100644 --- a/src/boot/efi/boot.c +++ b/src/boot/efi/boot.c @@ -405,7 +405,7 @@ static VOID print_status(Config *config, EFI_FILE *root_dir, CHAR16 *loaded_imag break; } - Print(L"systemd-boot version: " VERSION "\n"); + Print(L"systemd-boot version: " VERSION "\n"); Print(L"architecture: " EFI_MACHINE_TYPE_NAME "\n"); Print(L"loaded image: %s\n", loaded_image_path); Print(L"UEFI specification: %d.%02d\n", ST->Hdr.Revision >> 16, ST->Hdr.Revision & 0xffff);