diff options
Diffstat (limited to 'calendar/timeutil.c')
-rw-r--r-- | calendar/timeutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/timeutil.c b/calendar/timeutil.c index 3e912a0fa3..09123b3202 100644 --- a/calendar/timeutil.c +++ b/calendar/timeutil.c @@ -57,7 +57,7 @@ isodate_from_time_t (time_t t) static char isotime [40]; tm = localtime (&t); - strftime (isotime, sizeof (isotime)-1, "%Y%m%dT%H%M%sZ", tm); + strftime (isotime, sizeof (isotime)-1, "%Y%m%dT%H%M%SZ", tm); return isotime; } |