about summary refs log tree commit diff
path: root/sysdeps/pthread
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2014-12-19 14:02:58 -0800
committerH.J. Lu <hjl.tools@gmail.com>2014-12-30 08:09:06 -0800
commit37f469007dd6420bdc0607d0cda63513c42305d9 (patch)
treef7075ed4528df6100d66a2b9cce25797d8aaca5c /sysdeps/pthread
parentad86fbc3d5e4bab709d162f40e5d1a19ab8f3f6b (diff)
downloadglibc-37f469007dd6420bdc0607d0cda63513c42305d9.tar.gz
glibc-37f469007dd6420bdc0607d0cda63513c42305d9.tar.xz
glibc-37f469007dd6420bdc0607d0cda63513c42305d9.zip
Replace %ld with %jd and cast to intmax_t
Diffstat (limited to 'sysdeps/pthread')
-rw-r--r--sysdeps/pthread/tst-timer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/pthread/tst-timer.c b/sysdeps/pthread/tst-timer.c
index 16adf3c199..f310f6e6a1 100644
--- a/sysdeps/pthread/tst-timer.c
+++ b/sysdeps/pthread/tst-timer.c
@@ -90,13 +90,13 @@ main (void)
 
   setvbuf (stdout, 0, _IOLBF, 0);
 
-  printf ("clock_gettime returned %d, timespec = { %ld, %ld }\n",
-	  retval, ts.tv_sec, ts.tv_nsec);
+  printf ("clock_gettime returned %d, timespec = { %jd, %jd }\n",
+	  retval, (intmax_t) ts.tv_sec, (intmax_t) ts.tv_nsec);
 
   retval = clock_getres (CLOCK_REALTIME, &ts);
 
-  printf ("clock_getres returned %d, timespec = { %ld, %ld }\n",
-	  retval, ts.tv_sec, ts.tv_nsec);
+  printf ("clock_getres returned %d, timespec = { %jd, %jd }\n",
+	  retval, (intmax_t) ts.tv_sec, (intmax_t) ts.tv_nsec);
 
   if (timer_create (CLOCK_REALTIME, &sigev1, &timer_sig) != 0)
     {