diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-02-18 22:18:12 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-02-18 22:19:17 +0100 |
commit | 04155c67139fdd983f08e61e8a56d27341a4ea72 (patch) | |
tree | dfc8092d41cac4f5295809e87695c2d2d7a83bdb /src/boot | |
parent | d5d8429a12c4b1ef0dcd226c0904f00f4fa4898a (diff) |
systemd-boot: fix alignment of version in table
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/efi/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index 7605c6532d..0842d6d4e8 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); |