summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseReportStatusCodeLibNull
diff options
context:
space:
mode:
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2009-05-31 17:19:40 +0000
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2009-05-31 17:19:40 +0000
commit071a9a1f65b22e5f7fca6870245be504f98fd510 (patch)
tree39e6aff6143699123a7a5e578eb8a8f4ac38e3c2 /MdePkg/Library/BaseReportStatusCodeLibNull
parent94fe1ac9f678e5c5f90780937ca751bd736d42db (diff)
downloadedk2-071a9a1f65b22e5f7fca6870245be504f98fd510.tar.gz
edk2-071a9a1f65b22e5f7fca6870245be504f98fd510.tar.bz2
edk2-071a9a1f65b22e5f7fca6870245be504f98fd510.zip
Correct parameter names for ASSERT() checks.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8414 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseReportStatusCodeLibNull')
-rw-r--r--MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c b/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c
index 3b93633e5c..2b997ecfbc 100644
--- a/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c
+++ b/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c
@@ -137,9 +137,10 @@ ReportStatusCodeExtractDebugInfo (
OUT CHAR8 **Format
)
{
- ASSERT (Data != NULL);
- ASSERT (ErrorLevel != NULL);
- ASSERT (StartOfBuffer != NULL);
+ ASSERT (Data != NULL);
+ ASSERT (ErrorLevel != NULL);
+ ASSERT (Marker != NULL);
+ ASSERT (Format != NULL);
return FALSE;
}