One more fix for timer.nim on MacOS.

This commit is contained in:
Your Name 2018-05-17 18:20:58 +03:00
parent 0305277a6c
commit 302f573683
1 changed files with 1 additions and 1 deletions

View File

@ -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):