From fd0618c1f27e07edb0f2f5e3d8b134a4e11ff334 Mon Sep 17 00:00:00 2001 From: Qiu Shumin Date: Tue, 9 Jun 2015 08:34:02 +0000 Subject: MdeModulePkg: Add type cast to avoid build failure in GCC. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin Reviewed-by: Jiewen Yao git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17594 6f19259b-4bc3-4df7-8a09-765794883524 --- .../PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MdeModulePkg') diff --git a/MdeModulePkg/Universal/PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c b/MdeModulePkg/Universal/PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c index 8d17a03795..6e5c4f8fcd 100644 --- a/MdeModulePkg/Universal/PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c +++ b/MdeModulePkg/Universal/PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c @@ -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; } -- cgit v1.2.3