diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2014-12-19 14:01:40 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2014-12-30 08:08:29 -0800 |
commit | ad86fbc3d5e4bab709d162f40e5d1a19ab8f3f6b (patch) | |
tree | f7151cd44ec4a9f34c5215970670dc07c4af08ee | |
parent | 5d619de4610fa00d0b633e1916c49e59824440ff (diff) | |
download | glibc-ad86fbc3d5e4bab709d162f40e5d1a19ab8f3f6b.tar glibc-ad86fbc3d5e4bab709d162f40e5d1a19ab8f3f6b.tar.gz glibc-ad86fbc3d5e4bab709d162f40e5d1a19ab8f3f6b.tar.bz2 glibc-ad86fbc3d5e4bab709d162f40e5d1a19ab8f3f6b.zip |
Replace %ld with %jd and cast to intmax_t
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | stdio-common/tst-fmemopen2.c | 11 |
2 files changed, 9 insertions, 4 deletions
@@ -22,6 +22,8 @@ * rt/tst-timer4.c: Include <stdint.h>. (check_ts): Replace %ld with %jd and cast to intmax_t. (do_test): Likewise. + * stdio-common/tst-fmemopen2.c (do_test): Replace %ld with %jd + and cast to intmax_t. 2014-12-30 Andrew Senkevich <andrew.senkevich@intel.com> H.J. Lu <hongjiu.lu@intel.com> diff --git a/stdio-common/tst-fmemopen2.c b/stdio-common/tst-fmemopen2.c index c2a4baace9..e9d8b634fe 100644 --- a/stdio-common/tst-fmemopen2.c +++ b/stdio-common/tst-fmemopen2.c @@ -21,14 +21,15 @@ do_test (void) off_t o = ftello (fp); if (o != nstr) { - printf ("first ftello returned %ld, expected %zu\n", o, nstr); + printf ("first ftello returned %jd, expected %zu\n", + (intmax_t) o, nstr); result = 1; } rewind (fp); o = ftello (fp); if (o != 0) { - printf ("second ftello returned %ld, expected 0\n", o); + printf ("second ftello returned %jd, expected 0\n", (intmax_t) o); result = 1; } if (fseeko (fp, 0, SEEK_END) != 0) @@ -39,7 +40,8 @@ do_test (void) o = ftello (fp); if (o != nstr) { - printf ("third ftello returned %ld, expected %zu\n", o, nstr); + printf ("third ftello returned %jd, expected %zu\n", + (intmax_t) o, nstr); result = 1; } rewind (fp); @@ -50,7 +52,8 @@ do_test (void) o = ftello (fp); if (o != nstr2) { - printf ("fourth ftello returned %ld, expected %zu\n", o, nstr2); + printf ("fourth ftello returned %jd, expected %zu\n", + (intmax_t) o, nstr2); result = 1; } fclose (fp); |