]> Cypherpunks repositories - gostls13.git/commitdiff
gofmt-ify os
authorRobert Griesemer <gri@golang.org>
Thu, 5 Nov 2009 04:42:40 +0000 (20:42 -0800)
committerRobert Griesemer <gri@golang.org>
Thu, 5 Nov 2009 04:42:40 +0000 (20:42 -0800)
R=r
http://go/go-review/1017034

src/pkg/os/error.go

index 89c06d59dddb24fb098280ea021bf17229740bfa..809116cff06cec0a5d3760c9e5804ad11cecacbf 100644 (file)
@@ -74,7 +74,7 @@ var (
        EADDRINUSE      Error   = Errno(syscall.EADDRINUSE);
        ECONNREFUSED    Error   = Errno(syscall.ECONNREFUSED);
        ENAMETOOLONG    Error   = Errno(syscall.ENAMETOOLONG);
-       EAFNOSUPPORT    Error = Errno(syscall.EAFNOSUPPORT);
+       EAFNOSUPPORT    Error   = Errno(syscall.EAFNOSUPPORT);
 )
 
 // PathError records an error and the operation and file path that caused it.