diff options
author | Kanabenki <18357657+Kanabenki@users.noreply.github.com> | 2019-10-01 11:44:26 +0200 |
---|---|---|
committer | Kanabenki <18357657+Kanabenki@users.noreply.github.com> | 2019-10-01 11:44:26 +0200 |
commit | add91724e694dd4e5d26e232d925fcbe12a5ad37 (patch) | |
tree | 66910c55ddf7f33f9f6c6118d35c5b02b334d114 /drivers/unix | |
parent | 1f40117caa6ad25340261969d377e1b398cd5349 (diff) |
Fix casting to uint64_t when returning unix system time
Diffstat (limited to 'drivers/unix')
-rw-r--r-- | drivers/unix/os_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 80d7a2ccaa..b3d98a0648 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -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 { |