1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-26 22:52:34 +02:00

CID1130004: Nesting level does not match indentation

Corresponding to flashrom svn r1770.

Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
Stefan Reinauer 2014-04-26 16:11:07 +00:00 committed by Stefan Tauner
parent 69dd09d881
commit f94d9ceaa6

13
print.c
View File

@ -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)