diff --git a/libhdt/src/util/StopWatch.cpp b/libhdt/src/util/StopWatch.cpp index 2edc368a..3ea0b72e 100644 --- a/libhdt/src/util/StopWatch.cpp +++ b/libhdt/src/util/StopWatch.cpp @@ -163,7 +163,7 @@ std::ostream &operator<<(std::ostream &stream, StopWatch &sw) { } std::string StopWatch::toHuman(unsigned long long time) { - uint64_t tot_secs = time/1000000; + unsigned long long tot_secs = time/1000000; unsigned int hours = tot_secs/3600; unsigned int mins = (tot_secs/60) % 60;