summaryrefslogtreecommitdiff
path: root/print.c
diff options
context:
space:
mode:
authorstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2014-04-26 16:11:07 +0000
committerstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2014-04-26 16:11:07 +0000
commit087e5503af4227a16888fe07cd109aeaad914033 (patch)
treeba2149e235ad55937109d8996d8f960230af4515 /print.c
parentdc9fed440093eccc737ccf725cf2a963e1e070fb (diff)
downloadflashrom-087e5503af4227a16888fe07cd109aeaad914033.tar.gz
CID1130004: Nesting level does not match indentation.
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1770 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'print.c')
-rw-r--r--print.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/print.c b/print.c
index 6001cdf..6d2921b 100644
--- a/print.c
+++ b/print.c
@@ -436,12 +436,13 @@ static void print_supported_boards_helper(const struct board_info *boards,
msg_ginfo("%s", b->name);
for (i = 0; i < maxboardlen - strlen(b->name); i++)
msg_ginfo(" ");
- if (b->working == OK)
- msg_ginfo("OK ");
- else if (b->working == NT)
- msg_ginfo("NT ");
- else
- msg_ginfo("BAD ");
+
+ if (b->working == OK)
+ msg_ginfo("OK ");
+ else if (b->working == NT)
+ msg_ginfo("NT ");
+ else
+ msg_ginfo("BAD ");
for (e = board_matches; e->vendor_name != NULL; e++) {
if (strcmp(e->vendor_name, b->vendor)