From: qwang12 Date: Wed, 24 Oct 2007 11:22:34 +0000 (+0000) Subject: ASSERT_EFI_ERROR (FALSE) should be ASSERT (FALSE) X-Git-Tag: edk2-stable201903~21834 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=fb8749d0aff393e5e9e9f5a8604f17dc2bed3033 ASSERT_EFI_ERROR (FALSE) should be ASSERT (FALSE) git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4207 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c b/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c index e62142f24c..34021d50e7 100644 --- a/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c +++ b/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c @@ -130,7 +130,7 @@ PeimInitializeDxeIpl ( } } } else { - ASSERT_EFI_ERROR (FALSE); + ASSERT (FALSE); } }