summaryrefslogtreecommitdiff
path: root/print_wiki.c
diff options
context:
space:
mode:
authoruwe <uwe@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2010-06-03 16:35:51 +0000
committeruwe <uwe@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2010-06-03 16:35:51 +0000
commitf77f8fe2489292701542114f251db2f7d5c7ed65 (patch)
treecce1966039aba4b57a38121c69689fed80d090eb /print_wiki.c
parent4c97b04a1db6300d51bc7aebe6c870e52d492369 (diff)
downloadflashrom-f77f8fe2489292701542114f251db2f7d5c7ed65.tar.gz
Fix bug in wiki printing and whitespace (trivial).
The required "-m" options were not in the wiki output due to a mistake that I think I introduced recently. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1027 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
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 bce2634..6e1aec3 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++;
}