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: v220~1046 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04155c67139fdd983f08e61e8a56d27341a4ea72;p=thirdparty%2Fsystemd.git systemd-boot: fix alignment of version in table --- diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index 7605c6532d5..0842d6d4e82 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);