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 0813410a3a..f23277ce37 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%S ", tm); + strftime (isotime, sizeof (isotime)-1, "%Y%m%dT%H%M%S", tm); return isotime; } |