diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2014-12-19 13:49:58 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2014-12-30 08:05:47 -0800 |
commit | 41fad83083a21800aafb08fbc888f05ae44d6c8a (patch) | |
tree | 4911726ebc5af59da219069b5ee94f6373a32fef /libio | |
parent | 8d2b2763fc11da99e0e6b1ea7c0e3d556380e169 (diff) | |
download | glibc-41fad83083a21800aafb08fbc888f05ae44d6c8a.zip glibc-41fad83083a21800aafb08fbc888f05ae44d6c8a.tar.gz glibc-41fad83083a21800aafb08fbc888f05ae44d6c8a.tar.bz2 |
Replace %ld with %jd and cast to intmax_t
Diffstat (limited to 'libio')
-rw-r--r-- | libio/tst-ftell-active-handler.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libio/tst-ftell-active-handler.c b/libio/tst-ftell-active-handler.c index 7be75bc..186aec6 100644 --- a/libio/tst-ftell-active-handler.c +++ b/libio/tst-ftell-active-handler.c @@ -574,23 +574,23 @@ do_append_test (const char *filename) if (seek_ret != new_seek_ret) { - printf ("incorrectly modified file offset to %ld, should be %ld", - new_seek_ret, seek_ret); + printf ("incorrectly modified file offset to %jd, should be %jd", + (intmax_t) new_seek_ret, (intmax_t) seek_ret); ret |= 1; } else - printf ("retained current file offset %ld", seek_ret); + printf ("retained current file offset %jd", (intmax_t) seek_ret); new_seek_ret = ftello (fp); if (seek_ret != new_seek_ret) { - printf (", ftello reported incorrect offset %ld, should be %ld\n", - new_seek_ret, seek_ret); + printf (", ftello reported incorrect offset %jd, should be %jd\n", + (intmax_t) new_seek_ret, (intmax_t) seek_ret); ret |= 1; } else - printf (", ftello reported correct offset %ld\n", seek_ret); + printf (", ftello reported correct offset %jd\n", (intmax_t) seek_ret); fclose (fp); |