diff options
-rw-r--r-- | Source/ccommand.cxx | 2 |
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)" |