From ce5a65f4f95b0bf3723165c86a51d57fde1f83e7 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 17 Mar 2016 07:01:30 +0100 Subject: [PATCH] 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 --- wordrec/associate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wordrec/associate.h b/wordrec/associate.h index 977193b2..3d6fc447 100644 --- a/wordrec/associate.h +++ b/wordrec/associate.h @@ -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