summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2014-07-04 20:50:41 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2014-07-04 20:50:41 +0000
commit0cecbe565aaac481cc06bd9e97c0a1b7642334e6 (patch)
tree25f33dab03efe786152469bb26094f0e419c37a8
parentf58ba9ed6f413bc03f1a6f9e2115b970582e844f (diff)
EmulatorPkg: Add structure braces { } to fix build warning
The GCC parameter -Wno-missing-braces was recently removed. This caused build warnings where structures were instantiated without proper brace usage. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15632 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--EmulatorPkg/Library/EmuBdsLib/PlatformData.c10
-rw-r--r--EmulatorPkg/PlatformSmbiosDxe/SmbiosTable.c2
2 files changed, 7 insertions, 5 deletions
diff --git a/EmulatorPkg/Library/EmuBdsLib/PlatformData.c b/EmulatorPkg/Library/EmuBdsLib/PlatformData.c
index 977da6a28..3eb959b89 100644
--- a/EmulatorPkg/Library/EmuBdsLib/PlatformData.c
+++ b/EmulatorPkg/Library/EmuBdsLib/PlatformData.c
@@ -33,11 +33,13 @@ EMU_PLATFORM_UGA_DEVICE_PATH gGopDevicePath = {
},
{
{
- HARDWARE_DEVICE_PATH,
- HW_VENDOR_DP,
{
- (UINT8) (sizeof (EMU_VENDOR_DEVICE_PATH_NODE)),
- (UINT8) ((sizeof (EMU_VENDOR_DEVICE_PATH_NODE)) >> 8)
+ HARDWARE_DEVICE_PATH,
+ HW_VENDOR_DP,
+ {
+ (UINT8) (sizeof (EMU_VENDOR_DEVICE_PATH_NODE)),
+ (UINT8) ((sizeof (EMU_VENDOR_DEVICE_PATH_NODE)) >> 8)
+ },
},
EMU_GRAPHICS_WINDOW_PROTOCOL_GUID,
},
diff --git a/EmulatorPkg/PlatformSmbiosDxe/SmbiosTable.c b/EmulatorPkg/PlatformSmbiosDxe/SmbiosTable.c
index ffb4879a7..9fab30182 100644
--- a/EmulatorPkg/PlatformSmbiosDxe/SmbiosTable.c
+++ b/EmulatorPkg/PlatformSmbiosDxe/SmbiosTable.c
@@ -169,7 +169,7 @@ SMBIOS_TABLE_TYPE3 gSmbiosType3Template = {
0, // NumberofPowerCords;
0, // ContainedElementCount;
0, // ContainedElementRecordLength;
- { 0 }, // ContainedElements[1];
+ { { 0 } }, // ContainedElements[1];
};
CHAR8 *gSmbiosType3Strings[] = {
"edk2.sourceforge.net",