summaryrefslogtreecommitdiffstats
path: root/print_wiki.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2010-06-03 16:35:51 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2010-06-03 16:35:51 +0000
commit301703bc5b84d5e4a38298469ef00fdfe9aaa6a2 (patch)
treecce1966039aba4b57a38121c69689fed80d090eb /print_wiki.c
parentdd128c97931afd41bf0c34020bee742f3b7a0237 (diff)
downloadflashrom-301703bc5b84d5e4a38298469ef00fdfe9aaa6a2.tar.gz
flashrom-301703bc5b84d5e4a38298469ef00fdfe9aaa6a2.tar.bz2
flashrom-301703bc5b84d5e4a38298469ef00fdfe9aaa6a2.zip
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>
Diffstat (limited to 'print_wiki.c')
-rw-r--r--print_wiki.c4
1 files changed, 2 insertions, 2 deletions
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++;
}