mirror of
https://github.com/status-im/nim-chronos.git
synced 2025-01-20 16:29:12 +00:00
One more fix for timer.nim on MacOS.
This commit is contained in:
parent
0305277a6c
commit
302f573683
@ -30,7 +30,7 @@ elif defined(macosx):
|
||||
proc fastEpochTime*(): uint64 {.inline.} =
|
||||
var t: Timeval
|
||||
posix_gettimeofday(t)
|
||||
result = (t.tv_sec * 1_000 + t.tv_usec div 1_000)
|
||||
result = (uint64(t.tv_sec) * 1_000 + uint64(t.tv_usec) div 1_000)
|
||||
|
||||
elif defined(posix):
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user