Correct the visit point's type, it should be UINT32 but not UINTN

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4801 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2008-03-07 05:29:26 +00:00
parent c020e37c21
commit 9631746839
1 changed files with 3 additions and 3 deletions

View File

@ -443,10 +443,10 @@ Returns:
// usage in temporary memory for debuging.
//
DEBUG_CODE_BEGIN ();
UINTN *StackPointer;
UINT32 *StackPointer;
for (StackPointer = (UINTN*)SecCoreData->StackBase;
(StackPointer < (UINTN*)((UINTN)SecCoreData->StackBase + SecCoreData->StackSize)) \
for (StackPointer = (UINT32*)SecCoreData->StackBase;
(StackPointer < (UINT32*)((UINTN)SecCoreData->StackBase + SecCoreData->StackSize)) \
&& (*StackPointer == INIT_CAR_VALUE);
StackPointer ++);