Fix bug in wiki printing and whitespace

The required "-m" options were not in the wiki output due to a mistake
that I think I introduced recently.

Corresponding to flashrom svn r1027.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
diff --git a/print_wiki.c b/print_wiki.c
index bce2634..6e1aec3 100644
--- a/print_wiki.c
+++ b/print_wiki.c
@@ -146,8 +146,8 @@
 
 		k = 0;
 		while ((b[k].vendor_name != NULL)
-			&& !strcmp(b[k].vendor_name, boards[i].vendor)
-			&& !strcmp(b[k].board_name, boards[i].name)) {
+			&& strcmp(b[k].vendor_name, boards[i].vendor)
+			&& strcmp(b[k].board_name, boards[i].name)) {
 			k++;
 		}