From 126f6c7288b7262fd84a2026a33f36f0cc495871 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 19 Dec 2014 14:05:35 -0800 Subject: Replace %ld with %jd and cast to intmax_t --- timezone/tst-timezone.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'timezone') diff --git a/timezone/tst-timezone.c b/timezone/tst-timezone.c index b5edfff5f8..135a72fc9a 100644 --- a/timezone/tst-timezone.c +++ b/timezone/tst-timezone.c @@ -126,8 +126,8 @@ main (int argc, char ** argv) strcpy (envstring, "TZ=Europe/London"); putenv (envstring); t = mktime (&tmBuf); - snprintf (buf, sizeof (buf), "TZ=%s %ld %d %d %d %d %d %d %d %d %d", - getenv ("TZ"), t, + snprintf (buf, sizeof (buf), "TZ=%s %jd %d %d %d %d %d %d %d %d %d", + getenv ("TZ"), (intmax_t) t, tmBuf.tm_sec, tmBuf.tm_min, tmBuf.tm_hour, tmBuf.tm_mday, tmBuf.tm_mon, tmBuf.tm_year, tmBuf.tm_wday, tmBuf.tm_yday, tmBuf.tm_isdst); @@ -149,8 +149,8 @@ main (int argc, char ** argv) strcpy (envstring, "TZ=GMT"); /* No putenv call needed! */ t = mktime (&tmBuf); - snprintf (buf, sizeof (buf), "TZ=%s %ld %d %d %d %d %d %d %d %d %d", - getenv ("TZ"), t, + snprintf (buf, sizeof (buf), "TZ=%s %jd %d %d %d %d %d %d %d %d %d", + getenv ("TZ"), (intmax_t) t, tmBuf.tm_sec, tmBuf.tm_min, tmBuf.tm_hour, tmBuf.tm_mday, tmBuf.tm_mon, tmBuf.tm_year, tmBuf.tm_wday, tmBuf.tm_yday, tmBuf.tm_isdst); -- cgit v1.2.3-70-g09d2