From 84828cd260372495ea44fc19ff90afdf7e51a312 Mon Sep 17 00:00:00 2001 From: xli24 Date: Fri, 5 Dec 2008 08:35:38 +0000 Subject: [PATCH] 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 --- MdeModulePkg/Core/DxeIplPeim/DxeLoad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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