summaryrefslogtreecommitdiff
path: root/fallback.c
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2013-05-15 13:36:31 -0400
committerPeter Jones <pjones@redhat.com>2013-05-15 13:37:15 -0400
commit073f3b3cafc4ee4bf86cbefafcfa5b0ac3317cfd (patch)
treeb95d7a066d20f5f529fbc77c0ede1dc489dfdbfc /fallback.c
parenta41306e8f49dae129b1cc0479e5ffa311c2797f8 (diff)
downloadefi-boot-shim-073f3b3cafc4ee4bf86cbefafcfa5b0ac3317cfd.tar.gz
efi-boot-shim-073f3b3cafc4ee4bf86cbefafcfa5b0ac3317cfd.zip
Fix some minor type errors.
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'fallback.c')
-rw-r--r--fallback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fallback.c b/fallback.c
index cf1ebe46..82ddbf2f 100644
--- a/fallback.c
+++ b/fallback.c
@@ -501,7 +501,7 @@ find_boot_options(EFI_HANDLE device)
EFI_FILE_IO_INTERFACE *fio = NULL;
rc = uefi_call_wrapper(BS->HandleProtocol, 3, device,
- &FileSystemProtocol, &fio);
+ &FileSystemProtocol, (void **)&fio);
if (EFI_ERROR(rc)) {
Print(L"Couldn't find file system: %d\n", rc);
return rc;