about summary refs log tree commit diff
path: root/iconv
diff options
context:
space:
mode:
Diffstat (limited to 'iconv')
-rw-r--r--iconv/tst-iconv4.c2
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)