1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-10-12 19:04:54 +03:00

Fix printf format mismatches

This commit is contained in:
Andreas Schwab
2012-11-02 20:04:52 +01:00
parent f7934be8f6
commit b5dcacb450
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2012-11-02 Andreas Schwab <schwab@linux-m68k.org>
* iconvdata/bug-iconv8.c (do_test): Use %z for size_t arguments.
* iconvdata/bug-iconv9.c (do_test): Use %t for ptrdiff_t
arguments.
2012-11-02 Roland McGrath <roland@hack.frob.com>
* aclocal.m4 (GLIBC_AUTOCONF_VERSION): New macro.

View File

@@ -24,7 +24,7 @@ do_test (void)
ret = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
iconv_close(cd);
printf("result: %ld %d %ld %d\n", ret, errno, inbytesleft, inbuf[0]);
printf("result: %zd %d %zd %d\n", ret, errno, inbytesleft, inbuf[0]);
/*
* result: -1 84 0 0 (84=EILSEQ)

View File

@@ -37,7 +37,7 @@ do_test (void)
}
if (in != inbuf + sizeof (inbuf) - 1)
{
printf ("in advanced by %jd, expected %zu\n",
printf ("in advanced by %td, expected %zu\n",
in - inbuf, sizeof (inbuf) - 1);
res = 1;
}