Commit 68e30a97 authored by Alex Brainman's avatar Alex Brainman

time: fix windows build

R=rsc
CC=golang-dev
https://golang.org/cl/5440071
parent 9a86e244
......@@ -62,7 +62,7 @@ func pseudoUnix(year int, d *syscall.Systemtime) int64 {
day -= 7
}
}
return t.sec + int64(day-1)*secondsPerDay
return t.sec + int64(day-1)*secondsPerDay + internalToUnix
}
func initLocalFromTZI(i *syscall.Timezoneinformation) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment