ASSERT_EFI_ERROR (FALSE) should be ASSERT (FALSE)

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4208 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2007-10-24 11:27:02 +00:00
parent fb8749d0af
commit 096cdcaa4e
1 changed files with 2 additions and 1 deletions

View File

@ -666,5 +666,6 @@ InvokePeiCore (
//
// Never returns
//
ASSERT_EFI_ERROR (FALSE);
ASSERT (FALSE);
CpuDeadLoop ();
}