summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2007-10-24 11:22:34 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2007-10-24 11:22:34 +0000
commitfb8749d0aff393e5e9e9f5a8604f17dc2bed3033 (patch)
tree1058e1330ae524d85aa3d1976258cf107bbcd31b
parentc47e45a6c257d55ad21d81aa3163c43eb5b99553 (diff)
downloadedk2-platforms-fb8749d0aff393e5e9e9f5a8604f17dc2bed3033.tar.xz
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
-rw-r--r--MdeModulePkg/Core/DxeIplPeim/DxeLoad.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}