summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Häuser <Marvin.Haeuser@outlook.com>2018-02-27 23:25:28 +0100
committerJiewen Yao <jiewen.yao@intel.com>2018-02-28 09:14:49 +0800
commitedd7ffdb629da7d38ac853e47f1194dfa8c9766f (patch)
tree684ef5e7b487562d42d1e9f395bebc6f86a7a7b4
parent13d067fe36d2ce694bf9d8f646b92cd185dea858 (diff)
downloadedk2-platforms-edd7ffdb629da7d38ac853e47f1194dfa8c9766f.tar.xz
MinPlatformPkg/PciSegmentInfoLibSimple: Add missing braces to a GUID definition.
Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Marvin Haeuser <Marvin.Haeuser@outlook.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
-rw-r--r--Platform/Intel/MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Platform/Intel/MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.c b/Platform/Intel/MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.c
index 1facc63d01..96d56b0ce4 100644
--- a/Platform/Intel/MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.c
+++ b/Platform/Intel/MinPlatformPkg/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.c
@@ -21,7 +21,7 @@
#include <Library/PcdLib.h>
#define PCI_SEGMENT_INFO_HOB_GUID { \
- 0x6eab7169, 0x9b21, 0x450e, 0x99, 0xe8, 0xe, 0xb1, 0x1b, 0x7d, 0xfe, 0xcb \
+ 0x6eab7169, 0x9b21, 0x450e, { 0x99, 0xe8, 0xe, 0xb1, 0x1b, 0x7d, 0xfe, 0xcb } \
}
EFI_GUID mPciSegmentInfoHobGuid = PCI_SEGMENT_INFO_HOB_GUID;