Skip to content

Commit

Permalink
Fix order of arguments for tprintf
Browse files Browse the repository at this point in the history
Format string and arguments did not match.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Mar 17, 2016
1 parent 91046ac commit f905108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccmain/pagesegmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ ColumnFinder* Tesseract::SetupPageSegAndDetectOrientation(
} else {
tprintf("OSD: Weak margin (%.2f) for %d blob text block, "
"but using orientation anyway: %d\n",
osd_blobs.length(), osd_margin, osd_orientation);
osd_margin, osd_blobs.length(), osd_orientation);
}
}
}
Expand Down

0 comments on commit f905108

Please sign in to comment.