mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
OcMachoLib and OcAppleMachoLib: Silence type warnings.
This commit is contained in:
parent
8255f23ff0
commit
826d078efd
@ -1154,7 +1154,7 @@ InternalProcessSymbolPointers (
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
NumSymbols = (Section->Size / sizeof (MACH_NLIST_64));
|
||||
NumSymbols = (UINT32)(Section->Size / sizeof (MACH_NLIST_64));
|
||||
FirstSym = Section->Reserved1;
|
||||
|
||||
Result = OcOverflowAddU32 (FirstSym, NumSymbols, &OffsetTop);
|
||||
|
||||
@ -1379,7 +1379,7 @@ MachoExpandImage64 (
|
||||
}
|
||||
}
|
||||
|
||||
CurrentDelta = OriginalDelta + Segment->Size - Segment->FileSize;
|
||||
CurrentDelta = OriginalDelta + (UINT32)(Segment->Size - Segment->FileSize);
|
||||
}
|
||||
|
||||
if (Strip) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user