diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-17 13:56:20 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-17 13:56:20 (GMT) |
commit | 293c9d40b427639c6a7cd20b7a2cb5d35c42506d (patch) | |
tree | 515cdbe2d979940424d65a3795334d02ad489223 /Source | |
parent | dccfef740d5c8b830bee79ca663c247b91a27043 (diff) | |
download | CMake-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.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); } |