mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
Fix printf format mismatches
This commit is contained in:
parent
f7934be8f6
commit
b5dcacb450
@ -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.
|
||||
|
@ -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)
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user