From 8a4192dc41e5a20d4bc00c7c419dfcdf1314969f Mon Sep 17 00:00:00 2001 From: Douglas Clowes Date: Fri, 3 Jul 2015 09:11:17 +1000 Subject: [PATCH] Fix the TaskDescription format for the start time --- task.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task.c b/task.c index 396f782d..6497dd5f 100644 --- a/task.c +++ b/task.c @@ -526,7 +526,7 @@ char *TaskDescription(pTaskHead it) length = strlen(result); tm = localtime((const time_t *)&it->start_time); - strftime(result+length,100,"%F-%k-%m-%S",tm); + strftime(result+length,100,"%F-%H-%M-%S",tm); length = strlen(result); snprintf(result+length,120-20,"|%ld", it->lID); length = strlen(result);