From 301703bc5b84d5e4a38298469ef00fdfe9aaa6a2 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 3 Jun 2010 16:35:51 +0000 Subject: 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 Acked-by: Uwe Hermann --- print_wiki.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'print_wiki.c') diff --git a/print_wiki.c b/print_wiki.c index bce263435..6e1aec37b 100644 --- a/print_wiki.c +++ b/print_wiki.c @@ -146,8 +146,8 @@ static void wiki_helper(const char *devicetype, int cols, 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++; } -- cgit v1.2.3