mirror of https://github.com/acidanthera/audk.git
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:
parent
c020e37c21
commit
9631746839
|
@ -443,10 +443,10 @@ Returns:
|
||||||
// usage in temporary memory for debuging.
|
// usage in temporary memory for debuging.
|
||||||
//
|
//
|
||||||
DEBUG_CODE_BEGIN ();
|
DEBUG_CODE_BEGIN ();
|
||||||
UINTN *StackPointer;
|
UINT32 *StackPointer;
|
||||||
|
|
||||||
for (StackPointer = (UINTN*)SecCoreData->StackBase;
|
for (StackPointer = (UINT32*)SecCoreData->StackBase;
|
||||||
(StackPointer < (UINTN*)((UINTN)SecCoreData->StackBase + SecCoreData->StackSize)) \
|
(StackPointer < (UINT32*)((UINTN)SecCoreData->StackBase + SecCoreData->StackSize)) \
|
||||||
&& (*StackPointer == INIT_CAR_VALUE);
|
&& (*StackPointer == INIT_CAR_VALUE);
|
||||||
StackPointer ++);
|
StackPointer ++);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue