summaryrefslogtreecommitdiff
path: root/EmbeddedPkg/Ebl
diff options
context:
space:
mode:
authorOlivier Martin <olivier.martin@arm.com>2014-06-20 18:24:51 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2014-06-20 18:24:51 +0000
commitb0fdce95f7c35f169d7aec8e95e96955c2194887 (patch)
tree07f077bd8cc4afd5dd328b321d67c3434612db4e /EmbeddedPkg/Ebl
parentec6b8eda8fcb2e53fb90ee8d38c58cbe6d602665 (diff)
downloadedk2-platforms-b0fdce95f7c35f169d7aec8e95e96955c2194887.tar.xz
ARM Packages: Fixed missing braces (the warning was disabled by GCC)
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15578 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EmbeddedPkg/Ebl')
-rw-r--r--EmbeddedPkg/Ebl/HwDebug.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/EmbeddedPkg/Ebl/HwDebug.c b/EmbeddedPkg/Ebl/HwDebug.c
index 1b33222827..c87d1c4d1a 100644
--- a/EmbeddedPkg/Ebl/HwDebug.c
+++ b/EmbeddedPkg/Ebl/HwDebug.c
@@ -297,10 +297,12 @@ EblPciCmd (
GLOBAL_REMOVE_IF_UNREFERENCED const EBL_COMMAND_TABLE mCmdPciDebugTemplate[] = {
- "pci",
- " [bus] [dev] [func]; Dump PCI",
- NULL,
- EblPciCmd
+ {
+ "pci",
+ " [bus] [dev] [func]; Dump PCI",
+ NULL,
+ EblPciCmd
+ }
};