From a847e33aafe7ac13a60cedab8b702ff9fd296e60 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Wed, 2 Oct 2013 10:00:11 -0400 Subject: [PATCH] Fix wrong type on console_error() call. Stupid L"". Signed-off-by: Peter Jones --- shim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shim.c b/shim.c index 2a3d055..f311914 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; }