diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-07-18 20:56:41 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-07-24 08:56:10 +0900 |
commit | 67633c078c518cacd275bebba1ccc2a896ba61ad (patch) | |
tree | de311cb00a9c8139a4b068594806b2d9aba41604 /src/boot | |
parent | 81f33199e776e2b72013d209ad968bc8e76add97 (diff) | |
download | systemd-67633c078c518cacd275bebba1ccc2a896ba61ad.tar.gz systemd-67633c078c518cacd275bebba1ccc2a896ba61ad.tar.bz2 systemd-67633c078c518cacd275bebba1ccc2a896ba61ad.zip |
efi: remove trailing whitespace in string
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 4c3b39b57a..e0f75562c0 100644 --- a/src/boot/efi/boot.c +++ b/src/boot/efi/boot.c @@ -2314,7 +2314,7 @@ EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) { err = uefi_call_wrapper(BS->OpenProtocol, 6, image, &LoadedImageProtocol, (VOID **)&loaded_image, image, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL); if (EFI_ERROR(err)) { - Print(L"Error getting a LoadedImageProtocol handle: %r ", err); + Print(L"Error getting a LoadedImageProtocol handle: %r", err); uefi_call_wrapper(BS->Stall, 1, 3 * 1000 * 1000); return err; } |