From 1e6c931b52591b376786c9635c4e443ed293a4da Mon Sep 17 00:00:00 2001 From: Guo Dong Date: Wed, 20 May 2015 08:29:11 +0000 Subject: [PATCH] CorebootModulePkg/CbParseLib: Fix coding issue in ACPI Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Guo Dong Reviewed-by: Maurice Ma git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17486 6f19259b-4bc3-4df7-8a09-765794883524 --- CorebootModulePkg/Library/CbParseLib/CbParseLib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c index 77a744dc36..8890629edc 100644 --- a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c +++ b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c @@ -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); } /** -- 2.39.2