diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-28 12:00:46 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-28 12:00:46 +0000 |
commit | 7ccf38a33e1e227131c170a621d183b3bacef148 (patch) | |
tree | 9672e0bf0ac345a1dfc45823307bb71020c34c59 /EdkCompatibilityPkg/Foundation/Efi/Guid/Gpt | |
parent | 4c5d09830bb8cbbc8ff6d8dc8817d60a85468844 (diff) | |
download | edk2-platforms-7ccf38a33e1e227131c170a621d183b3bacef148.tar.xz |
Update Guid Value format.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4964 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Efi/Guid/Gpt')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Efi/Guid/Gpt/Gpt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Efi/Guid/Gpt/Gpt.h b/EdkCompatibilityPkg/Foundation/Efi/Guid/Gpt/Gpt.h index 7733067e40..ea97415fb8 100644 --- a/EdkCompatibilityPkg/Foundation/Efi/Guid/Gpt/Gpt.h +++ b/EdkCompatibilityPkg/Foundation/Efi/Guid/Gpt/Gpt.h @@ -27,17 +27,17 @@ Abstract: #define EFI_PART_TYPE_UNUSED_GUID \
{ \
- 0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 \
+ 0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} \
}
#define EFI_PART_TYPE_EFI_SYSTEM_PART_GUID \
{ \
- 0xc12a7328, 0xf81f, 0x11d2, 0xba, 0x4b, 0x00, 0xa0, 0xc9, 0x3e, 0xc9, 0x3b \
+ 0xc12a7328, 0xf81f, 0x11d2, {0xba, 0x4b, 0x00, 0xa0, 0xc9, 0x3e, 0xc9, 0x3b} \
}
#define EFI_PART_TYPE_LEGACY_MBR_GUID \
{ \
- 0x024dee41, 0x33e7, 0x11d3, 0x9d, 0x69, 0x00, 0x08, 0xc7, 0x81, 0xf3, 0x9f \
+ 0x024dee41, 0x33e7, 0x11d3, {0x9d, 0x69, 0x00, 0x08, 0xc7, 0x81, 0xf3, 0x9f} \
}
extern EFI_GUID gEfiPartTypeUnusedGuid;
|