mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2026-09-19 09:14:15 +00:00
olsonized
SCCS-file: strftime.c SCCS-SID: 7.47
This commit is contained in:
committed by
Paul Eggert
parent
dbcb8f497b
commit
033976e924
+3
-4
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user