mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
efi_selftest: add missing line feed in efi_selftest_miniapp_exit
If an error occurs we may see an output like: EFI application calling Exit Could not open loaded image protocolLoaded image protocol missing Add the missing line feed. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
ea773cf291
commit
59a2866bd7
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ static efi_status_t EFIAPI check_loaded_image_protocol
|
|||
NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL);
|
||||
if (ret != EFI_SUCCESS) {
|
||||
cout->output_string(cout,
|
||||
u"Could not open loaded image protocol");
|
||||
u"Could not open loaded image protocol\n");
|
||||
return ret;
|
||||
}
|
||||
if ((void *)check_loaded_image_protocol <
|
||||
|
|
Loading…
Reference in a new issue