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
commitf0ea7abe18c5e3ef6641226d701d4489fe41dbce (patch)
treecce1966039aba4b57a38121c69689fed80d090eb /print_wiki.c
parentcc33cfd290c8436e8bab39a9ccc91096f372eece (diff)
downloadflashrom-f0ea7abe18c5e3ef6641226d701d4489fe41dbce.zip
flashrom-f0ea7abe18c5e3ef6641226d701d4489fe41dbce.tar.gz
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 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++;
}
OpenPOWER on IntegriCloud