From 2494ce190bff85e94146ce960bde89fde1596a6e Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Sun, 12 Jun 2016 13:43:55 +0200 Subject: [PATCH] common: Fix bad printf format in t-stringhelp.c -- --- common/t-stringhelp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/t-stringhelp.c b/common/t-stringhelp.c index db0e811d7..4f4555e14 100644 --- a/common/t-stringhelp.c +++ b/common/t-stringhelp.c @@ -733,7 +733,7 @@ test_split_fields (void) if (field_count != field_count_expected) { printf ("%s: tidx %d: expected %d, got %d\n", - __func__, tidx, i, field_count_expected, field_count); + __func__, tidx, field_count_expected, field_count); fail (tidx * 1000); } else