summaryrefslogtreecommitdiffstats
path: root/CorebootModulePkg/Library/CbParseLib/CbParseLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'CorebootModulePkg/Library/CbParseLib/CbParseLib.c')
-rw-r--r--CorebootModulePkg/Library/CbParseLib/CbParseLib.c6
1 files 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);
}
/**