diff options
| author | Peter Jones <pjones@redhat.com> | 2013-10-02 09:52:42 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2013-10-02 10:00:11 -0400 |
| commit | 041b6862744d292f92428630afdf55a91127557e (patch) | |
| tree | e41a94ac06fcb86ab3b2f725049b9ffd84f3aa8b | |
| parent | 51583bd5006b362a63b6e49ad91aed2d1917f2ed (diff) | |
| download | efi-boot-shim-041b6862744d292f92428630afdf55a91127557e.tar.gz efi-boot-shim-041b6862744d292f92428630afdf55a91127557e.zip | |
Fix wrong type on console_error() call.
Stupid L"".
Signed-off-by: Peter Jones <pjones@redhat.com>
| -rw-r--r-- | shim.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1629,7 +1629,7 @@ EFI_STATUS efi_main (EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *passed_systab) &handle, &shim_lock_guid, EFI_NATIVE_INTERFACE, &shim_lock_interface); if (EFI_ERROR(efi_status)) { - console_error("Could not install security protocol", + console_error(L"Could not install security protocol", efi_status); return efi_status; } |
