IntelFrameworkModulePkg-GenericBdsLib: Add type cast for conversion from INTN to UINTN.

Signed-off-by: xdu2
Reviewed-by: ydong10

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12665 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
xdu2 2011-11-07 03:35:21 +00:00
parent a637802c2f
commit 6ba8465fc3
1 changed files with 2 additions and 2 deletions

View File

@ -1017,8 +1017,8 @@ EnableQuietBoot (
// //
// The first Logo. // The first Logo.
// //
LogoDestX = DestX; LogoDestX = (UINTN) DestX;
LogoDestY = DestY; LogoDestY = (UINTN) DestY;
LogoWidth = Width; LogoWidth = Width;
LogoHeight = Height; LogoHeight = Height;
} else { } else {