diff options
Diffstat (limited to 'iconv/tst-iconv4.c')
-rw-r--r-- | iconv/tst-iconv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/tst-iconv4.c b/iconv/tst-iconv4.c index bd687f9315..e099ca8715 100644 --- a/iconv/tst-iconv4.c +++ b/iconv/tst-iconv4.c @@ -26,7 +26,7 @@ do_test (void) size_t n = iconv (cd, &inptr, &inlen, &outptr, &outlen); if (n != (size_t) -1) { - puts ("n != (size_t) -1"); + printf ("n (= %zu) != (size_t) -1\n", n); exit (EXIT_FAILURE); } if (errno != EINVAL) |