olsonized

SCCS-file: strftime.c
SCCS-SID: 7.47
This commit is contained in:
Arthur David Olson
2012-07-18 03:02:22 -04:00
committed by Paul Eggert
parent dbcb8f497b
commit 033976e924
+3 -4
View File
@@ -286,10 +286,9 @@ label:
mkt = mktime(&tm);
if (TYPE_SIGNED(time_t))
(void) sprintf(buf, "%ld",
(long)mkt);
else
(void) sprintf(buf, "%lu",
(unsigned long)mkt);
(long) mkt);
else (void) sprintf(buf, "%lu",
(unsigned long) mkt);
pt = _add(buf, pt, ptlim);
}
continue;