summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2009-11-04 20:42:40 -0800
committerRobert Griesemer <gri@golang.org>2009-11-04 20:42:40 -0800
commit1955948acb0f148c150b0c31047322797673da77 (patch)
treec3749cedde96068748978117d554f78c6ad403ca
parent4aea02feb7aba0dd724b17e5fdb2ada173542ecf (diff)
downloadgolang-1955948acb0f148c150b0c31047322797673da77.tar.gz
gofmt-ify os
R=r http://go/go-review/1017034
-rw-r--r--src/pkg/os/error.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/os/error.go b/src/pkg/os/error.go
index 89c06d59d..809116cff 100644
--- a/src/pkg/os/error.go
+++ b/src/pkg/os/error.go
@@ -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.