Revision: 17594 http://sourceforge.net/p/edk2/code/17594 Author: shenshushi Date: 2015-06-09 08:34:02 +0000 (Tue, 09 Jun 2015) Log Message: ----------- MdeModulePkg: Add type cast to avoid build failure in GCC.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin <shumin....@intel.com> Reviewed-by: Jiewen Yao <jiewen....@intel.com> Modified Paths: -------------- trunk/edk2/MdeModulePkg/Universal/PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c Modified: trunk/edk2/MdeModulePkg/Universal/PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c =================================================================== --- trunk/edk2/MdeModulePkg/Universal/PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c 2015-06-09 08:13:23 UTC (rev 17593) +++ trunk/edk2/MdeModulePkg/Universal/PropertiesTableAttributesDxe/PropertiesTableAttributesDxe.c 2015-06-09 08:34:02 UTC (rev 17594) @@ -126,7 +126,7 @@ 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; } ------------------------------------------------------------------------------ _______________________________________________ edk2-commits mailing list edk2-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/edk2-commits