From ebbcc3c97d1075169d72f371da78ca7df9d4ffe2 Mon Sep 17 00:00:00 2001 From: Sebastien Barre Date: Tue, 16 Apr 2002 09:28:34 -0400 Subject: [PATCH] FIX: warning --- Source/ccommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ccommand.cxx b/Source/ccommand.cxx index e502c2465..b51939a51 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)"