Skip to content

Commit

Permalink
Fix arguments for tprintf
Browse files Browse the repository at this point in the history
The format string expects two int arguments.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Mar 17, 2016
1 parent 9279b16 commit 17d78a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion textord/colpartition.cpp
Expand Up @@ -1182,7 +1182,7 @@ bool ColPartition::MarkAsLeaderIfMonospaced() {
tprintf("No path\n");
} else {
tprintf("Total cost = %d vs allowed %d\n",
best_end->total_cost() < blob_count);
best_end->total_cost(), blob_count);
}
}
delete [] projection;
Expand Down

0 comments on commit 17d78a2

Please sign in to comment.