diff options
| author | Peter Jones <pjones@redhat.com> | 2013-05-15 13:37:15 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2013-05-15 13:37:15 -0400 |
| commit | 35b0b55b3ee0f6d6771c7992b8fefffc54bda48e (patch) | |
| tree | b95d7a066d20f5f529fbc77c0ede1dc489dfdbfc /fallback.c | |
| parent | 40cf2a423d7a080999cb22d0cb0bae33ab028c62 (diff) | |
| download | efi-boot-shim-35b0b55b3ee0f6d6771c7992b8fefffc54bda48e.tar.gz efi-boot-shim-35b0b55b3ee0f6d6771c7992b8fefffc54bda48e.zip | |
Fix some minor type errors.
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'fallback.c')
| -rw-r--r-- | fallback.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
