mirror of https://github.com/acidanthera/audk.git
Fix IA32 build failure to add UINTN type cast.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13960 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
554e88d230
commit
6c2f76ed70
|
@ -1672,7 +1672,7 @@ BiosVideoCheckForVbe (
|
||||||
//
|
//
|
||||||
// Make sure the FrameBufferSize does not exceed the max available frame buffer size reported by VEB.
|
// Make sure the FrameBufferSize does not exceed the max available frame buffer size reported by VEB.
|
||||||
//
|
//
|
||||||
ASSERT (CurrentModeData->FrameBufferSize <= BiosVideoPrivate->VbeInformationBlock->TotalMemory * 64 * 1024);
|
ASSERT (CurrentModeData->FrameBufferSize <= (UINTN)(BiosVideoPrivate->VbeInformationBlock->TotalMemory * 64 * 1024));
|
||||||
|
|
||||||
BiosVideoPrivate->ModeData = ModeBuffer;
|
BiosVideoPrivate->ModeData = ModeBuffer;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue