disk: Remove bogus pointer

This commit is contained in:
mintsuki 2021-09-01 20:22:28 +02:00
parent 4b724e65ad
commit 0af91feaef
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
#include <efi.h>
struct volume *disk_volume_from_efi_handle(EFI_HANDLE *efi_handle);
struct volume *disk_volume_from_efi_handle(EFI_HANDLE efi_handle);
#endif

View File

@ -205,7 +205,7 @@ void disk_create_index(void) {
#if uefi == 1
struct volume *disk_volume_from_efi_handle(EFI_HANDLE *efi_handle) {
struct volume *disk_volume_from_efi_handle(EFI_HANDLE efi_handle) {
EFI_STATUS status;
struct volume *ret = NULL;