diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2014-12-19 14:05:35 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2014-12-30 08:10:19 -0800 |
commit | 126f6c7288b7262fd84a2026a33f36f0cc495871 (patch) | |
tree | 05a78521f6681ad7a41e1672bdc7531406c3b04f /timezone | |
parent | fe342f50136919f1945d9a03964ee614c97d8659 (diff) | |
download | glibc-126f6c7288b7262fd84a2026a33f36f0cc495871.zip glibc-126f6c7288b7262fd84a2026a33f36f0cc495871.tar.gz glibc-126f6c7288b7262fd84a2026a33f36f0cc495871.tar.bz2 |
Replace %ld with %jd and cast to intmax_t
Diffstat (limited to 'timezone')
-rw-r--r-- | timezone/tst-timezone.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/timezone/tst-timezone.c b/timezone/tst-timezone.c index b5edfff..135a72f 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); |