summaryrefslogtreecommitdiffstats
path: root/lib/efi_loader/efi_file.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-01-07 16:44:18 -0700
committerSimon Glass <sjg@chromium.org>2019-01-14 17:47:13 -0700
commit0c89a318dc9abbdb74a9b57c5e7e4441d892b51a (patch)
treeff430a2052ebe2b8e58504b9a41655d7025d8837 /lib/efi_loader/efi_file.c
parent398ae02669d1300ab2cdcbbdfe1c5c264d47b718 (diff)
downloadu-boot-0c89a318dc9abbdb74a9b57c5e7e4441d892b51a.tar.gz
u-boot-0c89a318dc9abbdb74a9b57c5e7e4441d892b51a.tar.xz
u-boot-0c89a318dc9abbdb74a9b57c5e7e4441d892b51a.zip
efi_loader: Add a wchar_t cast in efi_file_open()
The printf() string here is not actually correct. Add a cast to avoid a warning when checking is enabled. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/efi_loader/efi_file.c')
-rw-r--r--lib/efi_loader/efi_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c
index 128cb0a627..8a4f3a9f40 100644
--- a/lib/efi_loader/efi_file.c
+++ b/lib/efi_loader/efi_file.c
@@ -221,8 +221,8 @@ static efi_status_t EFIAPI efi_file_open(struct efi_file_handle *file,
struct file_handle *fh = to_fh(file);
efi_status_t ret;
- EFI_ENTRY("%p, %p, \"%ls\", %llx, %llu", file, new_handle, file_name,
- open_mode, attributes);
+ EFI_ENTRY("%p, %p, \"%ls\", %llx, %llu", file, new_handle,
+ (wchar_t *)file_name, open_mode, attributes);
/* Check parameters */
if (!file || !new_handle || !file_name) {