summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2013-10-02 10:00:11 -0400
committerPeter Jones <pjones@redhat.com>2013-10-02 10:00:11 -0400
commita847e33aafe7ac13a60cedab8b702ff9fd296e60 (patch)
treee41a94ac06fcb86ab3b2f725049b9ffd84f3aa8b
parent1d56305945553d372ade5054f52baeed8b6f9b33 (diff)
downloadefi-boot-shim-a847e33aafe7ac13a60cedab8b702ff9fd296e60.tar.gz
efi-boot-shim-a847e33aafe7ac13a60cedab8b702ff9fd296e60.zip
Fix wrong type on console_error() call.
Stupid L"". Signed-off-by: Peter Jones <pjones@redhat.com>
-rw-r--r--shim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shim.c b/shim.c
index 2a3d0559..f311914d 100644
--- a/shim.c
+++ b/shim.c
@@ -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;
}