mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-27 12:49:35 +08:00
Fix format string for tprintf
The format string expected two double / int pairs, but there is only one float and one int argument. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
bc771fdcbd
commit
ce5a65f4f9
@ -48,7 +48,7 @@ struct AssociateStats {
|
||||
}
|
||||
|
||||
void Print() {
|
||||
tprintf("AssociateStats: w(%g %d) s(%g %d)\n", shape_cost, bad_shape);
|
||||
tprintf("AssociateStats: w(%g %d)\n", shape_cost, bad_shape);
|
||||
}
|
||||
|
||||
float shape_cost; // cost of blob shape
|
||||
|
Loading…
Reference in New Issue
Block a user