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:
li-elvin 2012-11-26 00:34:34 +00:00
parent 554e88d230
commit 6c2f76ed70
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }