mirror of https://github.com/acidanthera/audk.git
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:
parent
a637802c2f
commit
6ba8465fc3
|
@ -1017,8 +1017,8 @@ EnableQuietBoot (
|
|||
//
|
||||
// The first Logo.
|
||||
//
|
||||
LogoDestX = DestX;
|
||||
LogoDestY = DestY;
|
||||
LogoDestX = (UINTN) DestX;
|
||||
LogoDestY = (UINTN) DestY;
|
||||
LogoWidth = Width;
|
||||
LogoHeight = Height;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue