Hello rsc (cc: golang-dev@googlegroups.com), I'd like you to review this change.
LGTM On Thu, Apr 22, 2010 at 5:03 PM, <r@golang.org> wrote: > Reviewers: rsc, > > Message: > Hello rsc (cc: golang-dev@googlegroups.com), > > I'd like you to review this change. > > > Description: > os/stat_freebsd.go: maybe fix build for freebsd > > Please review this at http://codereview.appspot.com/970042/show > > Affected files: > M src/pkg/os/stat_freebsd.go > > > Index: src/pkg/os/stat_freebsd.go > =================================================================== > --- a/src/pkg/os/stat_freebsd.go > +++ b/src/pkg/os/stat_freebsd.go > @@ -18,7 +18,7 @@ > fi.Uid = int(stat.Uid) > fi.Gid = int(stat.Gid) > fi.Rdev = uint64(stat.Rdev) > - fi.Size = uint64(stat.Size) > + fi.Size = int64(stat.Size) > fi.Blksize = int64(stat.Blksize) > fi.Blocks = stat.Blocks > fi.Atime_ns = syscall.TimespecToNsec(stat.Atimespec) > > > > > -- > Subscription settings: > http://groups.google.com/group/golang-dev/subscribe?hl=en >
*** Submitted as http://code.google.com/p/go/source/detail?r=a88fc7005143 *** os/stat_freebsd.go: maybe fix build for freebsd R=rsc CC=golang-dev http://codereview.appspot.com/970042