diff options
author | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-05 08:35:38 +0000 |
---|---|---|
committer | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-05 08:35:38 +0000 |
commit | 84828cd260372495ea44fc19ff90afdf7e51a312 (patch) | |
tree | f0c939a598c2f110f91f450fac3d9dacb84bdb11 /MdeModulePkg/Core | |
parent | 57209470294e60db5a6f0878efd432324af3154b (diff) | |
download | edk2-platforms-84828cd260372495ea44fc19ff90afdf7e51a312.tar.xz |
Fix the build break caused by update of FUNCTION_ENTRY_POINT macro.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6869 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core')
-rw-r--r-- | MdeModulePkg/Core/DxeIplPeim/DxeLoad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c b/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c index d2f7521bcd..3f5dd08965 100644 --- a/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c +++ b/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c @@ -239,7 +239,7 @@ DxeLoadCore ( PcdGet32(PcdStatusCodeValuePeiHandoffToDxe)
);
- DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Loading DXE CORE at 0x%11p EntryPoint=0x%11p\n", (VOID *)(UINTN)DxeCoreAddress, FUNCTION_ENTRY_POINT (DxeCoreEntryPoint)));
+ DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Loading DXE CORE at 0x%11p EntryPoint=0x%11p\n", (VOID *)(UINTN)DxeCoreAddress, FUNCTION_ENTRY_POINT ((UINTN) DxeCoreEntryPoint)));
//
// Transfer control to the DXE Core
|