mirror of https://github.com/acidanthera/audk.git
CorebootModulePkg: Fix GCC build failure.
This patch fixed a GCC build failure issue. 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@17519 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d3dc58e979
commit
2e1fffcec7
|
@ -63,7 +63,7 @@ CbParseCbMemTable (
|
|||
**/
|
||||
RETURN_STATUS
|
||||
CbParseAcpiTable (
|
||||
IN VOID* pMemTable,
|
||||
IN VOID** pMemTable,
|
||||
IN UINT32* pMemTableSize
|
||||
);
|
||||
|
||||
|
|
|
@ -422,7 +422,7 @@ CbParseFadtInfo (
|
|||
Rsdp = NULL;
|
||||
Status = RETURN_SUCCESS;
|
||||
|
||||
Status = CbParseAcpiTable (&Rsdp, NULL);
|
||||
Status = CbParseAcpiTable ((VOID **)&Rsdp, NULL);
|
||||
if (RETURN_ERROR(Status)) {
|
||||
return Status;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue