diff options
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index d5c7d63..71bd309 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -47,7 +47,7 @@ static std::string CurrentTime() struct tm* t = localtime(¤ttime); //return ::CleanString(ctime(¤ttime)); char current_time[1024]; - strftime(current_time, 1000, "%a %b %e %T %Z %Y", t); + strftime(current_time, 1000, "%a %b %d %H:%M:%S %Z %Y", t); //std::cout << "Current_Time: " << current_time << std::endl; return ::CleanString(current_time); } |