mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
OcAppleKernelLib: Fix more BOOLEAN->EFI_STATUS.
This commit is contained in:
parent
3906be2bc8
commit
c8e4fe99da
@ -371,7 +371,7 @@ InternalScanBuildLinkedVtables (
|
||||
&VtableMaxSize
|
||||
);
|
||||
if ((VtableData == NULL) || !OC_ALIGNED (VtableData)) {
|
||||
return FALSE;
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
Result = InternalGetVtableEntries64 (
|
||||
@ -380,7 +380,7 @@ InternalScanBuildLinkedVtables (
|
||||
&NumEntriesTemp
|
||||
);
|
||||
if (!Result) {
|
||||
return FALSE;
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
VtableLookups[Index].Vtable.Data = VtableData;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user