1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

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>
This commit is contained in:
Uwe Hermann 2010-06-03 16:35:51 +00:00
parent dd128c9793
commit 301703bc5b
2 changed files with 10 additions and 10 deletions

View File

@ -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++;
}