]> sourceware.org Git - glibc.git/commitdiff
Improve error message.
authorUlrich Drepper <drepper@redhat.com>
Thu, 21 Nov 2002 04:41:14 +0000 (04:41 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 21 Nov 2002 04:41:14 +0000 (04:41 +0000)
iconv/tst-iconv4.c

index bd687f9315efa6cc28e4d61f50e9d287384b5e82..e099ca87151d41d85b993b00c86ad02a06897eed 100644 (file)
@@ -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)
This page took 0.038432 seconds and 5 git commands to generate.