Merge pull request #32463 from Kanabenki/fix-time-cast

Fix casting to uint64_t when returning unix system time
This commit is contained in:
Rémi Verschelde 2019-10-01 12:24:14 +02:00 committed by GitHub
commit 5fa6f9d7ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -187,7 +187,7 @@ uint64_t OS_Unix::get_system_time_secs() const {
uint64_t OS_Unix::get_system_time_msecs() const {
struct timeval tv_now;
gettimeofday(&tv_now, NULL);
return uint64_t(tv_now.tv_sec * 1000 + tv_now.tv_usec / 1000);
return uint64_t(tv_now.tv_sec) * 1000 + uint64_t(tv_now.tv_usec) / 1000;
}
OS::Date OS_Unix::get_date(bool utc) const {