mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-13 13:25:59 +00:00
CompareMem expects void * and gcc complains.
Sorry about that. Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
parent
041b686274
commit
aec345c0b2
@ -101,7 +101,7 @@ configtable_find_image(const EFI_DEVICE_PATH *DevicePath)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CompareMem(dp, DevicePath, Size) == 0) {
|
if (CompareMem(dp, (void *)DevicePath, Size) == 0) {
|
||||||
#ifdef DEBUG_CONFIG
|
#ifdef DEBUG_CONFIG
|
||||||
Print(L"***FOUND\n");
|
Print(L"***FOUND\n");
|
||||||
console_get_keystroke();
|
console_get_keystroke();
|
||||||
|
Loading…
Reference in New Issue
Block a user