diff options
| author | Peter Jones <pjones@redhat.com> | 2021-03-05 13:33:52 -0500 |
|---|---|---|
| committer | Jan Setje-Eilers <73182357+jsetje@users.noreply.github.com> | 2021-03-09 13:52:53 -0800 |
| commit | 6d3f247c323c68f78e810f6f76863ddee76f8532 (patch) | |
| tree | de2e8e62225b585a93806192b6cf978dfd180e4e /lib/console.c | |
| parent | 233b1cc54f34a8e61b9bc1805af2657cab1bd722 (diff) | |
| download | efi-boot-shim-6d3f247c323c68f78e810f6f76863ddee76f8532.tar.gz efi-boot-shim-6d3f247c323c68f78e810f6f76863ddee76f8532.zip | |
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 <pjones@redhat.com>
Diffstat (limited to 'lib/console.c')
| -rw-r--r-- | lib/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"}, |
