summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-04-16 13:28:34 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2002-04-16 13:28:34 (GMT)
commitebbcc3c97d1075169d72f371da78ca7df9d4ffe2 (patch)
tree6c4c24ae208692bfd9dbfbc0112c71bfa56ae580
parenta07cdc75e19f957b8ea3c6d5cd35514372eeb21a (diff)
downloadCMake-ebbcc3c97d1075169d72f371da78ca7df9d4ffe2.zip
CMake-ebbcc3c97d1075169d72f371da78ca7df9d4ffe2.tar.gz
CMake-ebbcc3c97d1075169d72f371da78ca7df9d4ffe2.tar.bz2
FIX: warning
-rw-r--r--Source/ccommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ccommand.cxx b/Source/ccommand.cxx
index e502c24..b51939a 100644
--- a/Source/ccommand.cxx
+++ b/Source/ccommand.cxx
@@ -102,7 +102,7 @@ int main(int ac, char** av)
double clocks_per_sec = (double)CLOCKS_PER_SEC;
std::cout << "Elapsed time: "
- << (time_finish - time_start) << " s. (time)"
+ << (time_t)(time_finish - time_start) << " s. (time)"
<< ", "
<< (double)(clock_finish - clock_start) / clocks_per_sec
<< " s. (clock)"