diff --git a/core/sys/linux/sys.odin b/core/sys/linux/sys.odin index 49022da76..f502b11be 100644 --- a/core/sys/linux/sys.odin +++ b/core/sys/linux/sys.odin @@ -2186,6 +2186,7 @@ time :: proc "contextless" (tloc: ^uint) -> (Errno) { ts: Time_Spec ret := syscall(SYS_clock_gettime, Clock_Id.REALTIME, ts) tloc^ = ts.time_sec + return Errno(-ret) } }