MdeModulePkg: Fix warning with VS2005 toolchain on IA32

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10338 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten 2010-04-05 03:43:36 +00:00
parent 38c7df9848
commit b295dfd486
1 changed files with 1 additions and 1 deletions

View File

@ -830,7 +830,7 @@ CoreConvertPages (
//
CoreAddRange (NewType, Start, RangeEnd, Attribute);
if (NewType == EfiConventionalMemory) {
DEBUG_CLEAR_MEMORY ((VOID *)(UINTN)Start, RangeEnd - Start + 1);
DEBUG_CLEAR_MEMORY ((VOID *)(UINTN) Start, (UINTN) (RangeEnd - Start + 1));
}
//