CorebootModulePkg/CbParseLib: Fix coding issue in ACPI

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Guo Dong <guo.dong@intel.com>
Reviewed-by: Maurice Ma <maurice.ma@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17486 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Guo Dong 2015-05-20 08:29:11 +00:00 committed by gdong1
parent 11e058ec75
commit 1e6c931b52
1 changed files with 3 additions and 3 deletions

View File

@ -306,11 +306,11 @@ CbParseCbMemTable (
**/
RETURN_STATUS
CbParseAcpiTable (
IN VOID* pMemTable,
IN UINT32* pMemTableSize
IN VOID **pMemTable,
IN UINT32 *pMemTableSize
)
{
return CbParseCbMemTable (SIGNATURE_32 ('I', 'P', 'C', 'A'), (VOID **)pMemTable, pMemTableSize);
return CbParseCbMemTable (SIGNATURE_32 ('I', 'P', 'C', 'A'), pMemTable, pMemTableSize);
}
/**