time: fix V compilation for solaris

pull/10935/head
Delyan Angelov 2021-07-24 07:55:48 +03:00
parent 29cda252f1
commit 29f55bdf9b
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ fn solaris_now() Time {
mut ts := C.timespec{}
C.clock_gettime(C.CLOCK_REALTIME, &ts)
loc_tm := C.tm{}
C.localtime_r(&ts.tv_sec, &loc_tm)
C.localtime_r(voidptr(&ts.tv_sec), &loc_tm)
return convert_ctime(loc_tm, int(ts.tv_nsec / 1000))
}