1
0
mirror of https://github.com/golang/go synced 2024-11-12 01:00:22 -07:00

lib9: fix windows build

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5362045
This commit is contained in:
Russ Cox 2011-11-07 14:16:00 -05:00
parent 3f4a91d778
commit 2547ad6b01

View File

@ -22,7 +22,7 @@ p9ctime(long t)
tm->tm_hour, tm->tm_hour,
tm->tm_min, tm->tm_min,
tm->tm_sec, tm->tm_sec,
tm->tm_zone, "XXX", // tm_zone is unavailable on windows, and no one cares
tm->tm_year + 1900); tm->tm_year + 1900);
return buf; return buf;
} }