1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

time: fix compilation on macos

This commit is contained in:
Delyan Angelov
2021-04-05 15:31:29 +03:00
parent 3ea9868d0e
commit cc8948efcf
3 changed files with 4 additions and 3 deletions

View File

@ -67,7 +67,8 @@ fn darwin_now() Time {
tv := C.timeval{}
C.gettimeofday(&tv, 0)
loc_tm := C.tm{}
C.localtime_r(&tv.tv_sec, &loc_tm)
asec := voidptr(&tv.tv_sec)
C.localtime_r(&time_t(asec), &loc_tm)
return convert_ctime(loc_tm, int(tv.tv_usec))
}