diff options
author | Leahy, Leroy P <leroy.p.leahy@intel.com> | 2016-05-23 08:45:28 -0700 |
---|---|---|
committer | Maurice Ma <maurice.ma@intel.com> | 2016-05-23 13:24:04 -0700 |
commit | 576a07e4fb497823e6e13c356dc9a3d9bc20edf0 (patch) | |
tree | 962ac5e1fd8746cdff035b5cb997fbb49ad2bd23 /CorebootPayloadPkg/Library/PlatformBootManagerLib | |
parent | f6190a01c13a6b4dd01a1765b28964db7dc58e35 (diff) | |
download | edk2-platforms-576a07e4fb497823e6e13c356dc9a3d9bc20edf0.tar.xz |
CorebootPayloadPkg/PlatformBootManagerLib: Fix Linux build
Fix Linux build failure with GCC 4.8.4 due to missing braces.
Change-Id: Ic0de6520605149f1bb74f8b60ce8cab8beda10a4
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-by: Maurice Ma <maurice.ma@intel.com>
Diffstat (limited to 'CorebootPayloadPkg/Library/PlatformBootManagerLib')
-rw-r--r-- | CorebootPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/CorebootPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.h b/CorebootPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.h index 948ba5796b..36f53fd366 100644 --- a/CorebootPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.h +++ b/CorebootPayloadPkg/Library/PlatformBootManagerLib/PlatformBootManager.h @@ -45,8 +45,7 @@ extern PLATFORM_CONSOLE_CONNECT_ENTRY gPlatformConsole[]; { \
END_DEVICE_PATH_TYPE,\
END_ENTIRE_DEVICE_PATH_SUBTYPE,\
- END_DEVICE_PATH_LENGTH,\
- 0\
+ { END_DEVICE_PATH_LENGTH, 0 },\
}
#define CONSOLE_OUT BIT0
|