diff options
author | Robert Griesemer <gri@golang.org> | 2009-11-04 20:42:40 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-11-04 20:42:40 -0800 |
commit | 1955948acb0f148c150b0c31047322797673da77 (patch) | |
tree | c3749cedde96068748978117d554f78c6ad403ca /src | |
parent | 4aea02feb7aba0dd724b17e5fdb2ada173542ecf (diff) | |
download | golang-1955948acb0f148c150b0c31047322797673da77.tar.gz |
gofmt-ify os
R=r
http://go/go-review/1017034
Diffstat (limited to 'src')
-rw-r--r-- | src/pkg/os/error.go | 2 |
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. |