From 071a9a1f65b22e5f7fca6870245be504f98fd510 Mon Sep 17 00:00:00 2001 From: mdkinney Date: Sun, 31 May 2009 17:19:40 +0000 Subject: Correct parameter names for ASSERT() checks. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8414 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c | 7 ++++--- 1 file 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; } -- cgit v1.2.3