Skip to content

Commit 17d78a2

Browse files
committed
Fix arguments for tprintf
The format string expects two int arguments. Signed-off-by: Stefan Weil <[email protected]>
1 parent 9279b16 commit 17d78a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

textord/colpartition.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ bool ColPartition::MarkAsLeaderIfMonospaced() {
11821182
tprintf("No path\n");
11831183
} else {
11841184
tprintf("Total cost = %d vs allowed %d\n",
1185-
best_end->total_cost() < blob_count);
1185+
best_end->total_cost(), blob_count);
11861186
}
11871187
}
11881188
delete [] projection;

0 commit comments

Comments
 (0)