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

noted by kaib: explicit assignment initialization

didn't match the composite literal initialization.

R=r
CC=kaib
http://go/go-review/1024039
This commit is contained in:
Russ Cox 2009-11-09 17:09:33 -08:00
parent 6c7f9f6340
commit 1a821b32da

View File

@ -822,7 +822,6 @@ func NewFile(fd int, name string) *File {
f := new(File);
f.fd = fd;
f.name = name;
f.error = nil;
f.dirinfo = nil;
f.nepipe = 0;
return f;