mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: Add type cast to avoid build failure in GCC.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin <shumin.qiu@intel.com> Reviewed-by: Jiewen Yao <Jiewen.Yao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17594 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
986ede742c
commit
fd0618c1f2
|
@ -126,7 +126,7 @@ UpdateMemoryAttributesDefault (
|
|||
EFI_PROPERTIES_TABLE *PropertiesTable;
|
||||
|
||||
DEBUG ((EFI_D_INFO, "UpdateMemoryAttributesDefault\n"));
|
||||
Status = EfiGetSystemConfigurationTable (&gEfiPropertiesTableGuid, &PropertiesTable);
|
||||
Status = EfiGetSystemConfigurationTable (&gEfiPropertiesTableGuid, (VOID **) &PropertiesTable);
|
||||
if (EFI_ERROR (Status)) {
|
||||
goto Done;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue