diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-05-31 17:19:40 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-05-31 17:19:40 +0000 |
commit | 071a9a1f65b22e5f7fca6870245be504f98fd510 (patch) | |
tree | 39e6aff6143699123a7a5e578eb8a8f4ac38e3c2 /MdePkg | |
parent | 94fe1ac9f678e5c5f90780937ca751bd736d42db (diff) | |
download | edk2-071a9a1f65b22e5f7fca6870245be504f98fd510.zip edk2-071a9a1f65b22e5f7fca6870245be504f98fd510.tar.gz edk2-071a9a1f65b22e5f7fca6870245be504f98fd510.tar.bz2 |
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')
-rw-r--r-- | MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c b/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c index 3b93633..2b997ec 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;
}
|