summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2016-06-12 13:43:55 +0200
committerWerner Koch <wk@gnupg.org>2016-06-12 13:43:55 +0200
commit2494ce190bff85e94146ce960bde89fde1596a6e (patch)
tree6d617093185a7ad914a3e0f749c120f521d08470
parentgpg: Remove C-99ism, re-indent, and simplify one function. (diff)
downloadgnupg2-2494ce190bff85e94146ce960bde89fde1596a6e.tar.xz
gnupg2-2494ce190bff85e94146ce960bde89fde1596a6e.zip
common: Fix bad printf format in t-stringhelp.c
--
-rw-r--r--common/t-stringhelp.c2
1 files changed, 1 insertions, 1 deletions
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