diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-10-24 11:27:02 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-10-24 11:27:02 +0000 |
commit | 096cdcaa4ef900fd1d09b5ab18306662782434da (patch) | |
tree | 71427e3455b671bd67a1779217065895683e321d /MdeModulePkg/Core | |
parent | fb8749d0aff393e5e9e9f5a8604f17dc2bed3033 (diff) | |
download | edk2-platforms-096cdcaa4ef900fd1d09b5ab18306662782434da.tar.xz |
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
Diffstat (limited to 'MdeModulePkg/Core')
-rw-r--r-- | MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c index fd4778fdc7..8fccf3413e 100644 --- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c @@ -666,5 +666,6 @@ InvokePeiCore ( //
// Never returns
//
- ASSERT_EFI_ERROR (FALSE);
+ ASSERT (FALSE);
+ CpuDeadLoop ();
}
|