diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-08-01 03:44:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-08-01 03:44:35 +0000 |
commit | 1475e2012f267f69dab879ce146f99128fd21653 (patch) | |
tree | 811bc01b3abd62840d8b3bc285cca9575d50cba4 /stdio-common | |
parent | 6f59d56e61305b665aecbaab1440b07b6c80bdc7 (diff) | |
download | glibc-1475e2012f267f69dab879ce146f99128fd21653.tar glibc-1475e2012f267f69dab879ce146f99128fd21653.tar.gz glibc-1475e2012f267f69dab879ce146f99128fd21653.tar.bz2 glibc-1475e2012f267f69dab879ce146f99128fd21653.zip |
* stdlib/tst-strtod2.c (do_test): Use %tu in fmt string for ptrdiff_t
value.
* stdio-common/tst-fmemopen2.c (do_test): Avoid fmt string warning
if off_t is different rank from size_t.
* sysdeps/generic/unwind-dw2.c (extract_cie_info, execute_cfa_program,
uw_frame_state_for): Avoid type punning warnings.
* sysdeps/generic/unwind-dw2-fde-glibc.c
(_Unwind_IteratePhdrCallback): Likewise.
* sysdeps/generic/unwind-dw2-fde.c (_Unwind_Find_FDE): Likewise.
(binary_search_single_encoding_fdes, binary_search_mixed_encoding_fdes,
get_cie_encoding, linear_search_fdes): Don't mix char and unsigned char
pointers.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/tst-fmemopen2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tst-fmemopen2.c b/stdio-common/tst-fmemopen2.c index 81beddddef..c2a4baace9 100644 --- a/stdio-common/tst-fmemopen2.c +++ b/stdio-common/tst-fmemopen2.c @@ -28,7 +28,7 @@ do_test (void) o = ftello (fp); if (o != 0) { - printf ("second ftello returned %ld, expected %zu\n", o, (off_t) 0); + printf ("second ftello returned %ld, expected 0\n", o); result = 1; } if (fseeko (fp, 0, SEEK_END) != 0) |