From 6d3f247c323c68f78e810f6f76863ddee76f8532 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Fri, 5 Mar 2021 13:33:52 -0500 Subject: Don't use WCHAR even when we're assigning wide string literals Note that there are still some occurrences of WCHAR in Cryptlib/OpenSSL/, but they're only built on win32 platforms we don't support. Signed-off-by: Peter Jones --- lib/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/console.c') diff --git a/lib/console.c b/lib/console.c index 05f7ec16..ffa8ea5c 100644 --- a/lib/console.c +++ b/lib/console.c @@ -572,7 +572,7 @@ console_mode_handle(VOID) /* Copy of gnu-efi-3.0 with the added secure boot strings */ static struct { EFI_STATUS Code; - WCHAR *Desc; + CHAR16 *Desc; } error_table[] = { { EFI_SUCCESS, L"Success"}, { EFI_LOAD_ERROR, L"Load Error"}, -- cgit v1.2.3