aboutsummaryrefslogtreecommitdiff
path: root/iconv/tst-iconv3.c
diff options
context:
space:
mode:
Diffstat (limited to 'iconv/tst-iconv3.c')
-rw-r--r--iconv/tst-iconv3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iconv/tst-iconv3.c b/iconv/tst-iconv3.c
index f613ed962b..7d92d3bb1c 100644
--- a/iconv/tst-iconv3.c
+++ b/iconv/tst-iconv3.c
@@ -41,9 +41,9 @@ main (int argc, char *argv[])
printf ("Received something else\n");
printf ("inptr change: %td\n", inptr - inbuf);
- printf ("inlen change: %d\n", BUFSIZE - inbytes_left);
+ printf ("inlen change: %zd\n", BUFSIZE - inbytes_left);
printf ("outptr change: %zd\n", outptr - (char *) outbuf);
- printf ("outlen change: %d\n", BUFSIZE * 4 - outbytes_left);
+ printf ("outlen change: %zd\n", BUFSIZE * 4 - outbytes_left);
result = 1;
}
else