summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-17 13:56:20 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-17 13:56:20 (GMT)
commit293c9d40b427639c6a7cd20b7a2cb5d35c42506d (patch)
tree515cdbe2d979940424d65a3795334d02ad489223 /Source
parentdccfef740d5c8b830bee79ca663c247b91a27043 (diff)
downloadCMake-293c9d40b427639c6a7cd20b7a2cb5d35c42506d.zip
CMake-293c9d40b427639c6a7cd20b7a2cb5d35c42506d.tar.gz
CMake-293c9d40b427639c6a7cd20b7a2cb5d35c42506d.tar.bz2
Remove warning about %e and %T
Diffstat (limited to 'Source')
-rw-r--r--Source/cmCTest.cxx2
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(&currenttime);
//return ::CleanString(ctime(&currenttime));
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);
}