diff options
author | Werner Koch <wk@gnupg.org> | 2016-06-12 13:43:55 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2016-06-12 13:43:55 +0200 |
commit | 2494ce190bff85e94146ce960bde89fde1596a6e (patch) | |
tree | 6d617093185a7ad914a3e0f749c120f521d08470 | |
parent | gpg: Remove C-99ism, re-indent, and simplify one function. (diff) | |
download | gnupg2-2494ce190bff85e94146ce960bde89fde1596a6e.tar.xz gnupg2-2494ce190bff85e94146ce960bde89fde1596a6e.zip |
common: Fix bad printf format in t-stringhelp.c
--
-rw-r--r-- | common/t-stringhelp.c | 2 |
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 |