diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2014-12-19 13:48:40 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2014-12-30 08:04:43 -0800 |
commit | 8d2b2763fc11da99e0e6b1ea7c0e3d556380e169 (patch) | |
tree | ce07ef1f2834fd3ad9431adc7150040787871f31 /io | |
parent | 8b4416d83c79ba77b0669203741c712880a09ae4 (diff) | |
download | glibc-8d2b2763fc11da99e0e6b1ea7c0e3d556380e169.tar.gz glibc-8d2b2763fc11da99e0e6b1ea7c0e3d556380e169.tar.xz glibc-8d2b2763fc11da99e0e6b1ea7c0e3d556380e169.zip |
Replace %ld with %jd and cast to intmax_t
Diffstat (limited to 'io')
-rw-r--r-- | io/test-utime.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/io/test-utime.c b/io/test-utime.c index 26a5464ce9..afb8a29bae 100644 --- a/io/test-utime.c +++ b/io/test-utime.c @@ -109,25 +109,29 @@ main (int argc, char *argv[]) if (st.st_mtime != ut.modtime) { - printf ("modtime %ld != %ld\n", st.st_mtime, ut.modtime); + printf ("modtime %jd != %jd\n", + (intmax_t) st.st_mtime, (intmax_t) ut.modtime); return 1; } if (st.st_atime != ut.actime) { - printf ("actime %ld != %ld\n", st.st_atime, ut.actime); + printf ("actime %jd != %jd\n", + (intmax_t) st.st_atime, (intmax_t) ut.actime); return 1; } if (stnow.st_mtime < now1 || stnow.st_mtime > now2) { - printf ("modtime %ld <%ld >%ld\n", stnow.st_mtime, now1, now2); + printf ("modtime %jd <%jd >%jd\n", + (intmax_t) stnow.st_mtime, (intmax_t) now1, (intmax_t) now2); return 1; } if (stnow.st_atime < now1 || stnow.st_atime > now2) { - printf ("actime %ld <%ld >%ld\n", stnow.st_atime, now1, now2); + printf ("actime %jd <%jd >%jd\n", + (intmax_t) stnow.st_atime, (intmax_t) now1, (intmax_t) now2); return 1; } |