diff options
author | Russ Cox <rsc@golang.org> | 2009-06-24 20:12:50 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-06-24 20:12:50 -0700 |
commit | dfafe9a353bd1d4dcbbde691b9c8cda2533f47a3 (patch) | |
tree | edbec55b247a7a6543d84b4574fb88326833b3e1 /src/pkg/os/exec.go | |
parent | e3fe6186634f9b74b9f39924516e24b068b9e141 (diff) | |
download | golang-dfafe9a353bd1d4dcbbde691b9c8cda2533f47a3.tar.gz |
style police: parens in if, for, switch, range
R=r
DELTA=32 (0 added, 3 deleted, 29 changed)
OCL=30718
CL=30725
Diffstat (limited to 'src/pkg/os/exec.go')
-rw-r--r-- | src/pkg/os/exec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/os/exec.go b/src/pkg/os/exec.go index d283c7267..c1551f86d 100644 --- a/src/pkg/os/exec.go +++ b/src/pkg/os/exec.go @@ -21,7 +21,7 @@ func ForkExec(argv0 string, argv []string, envv []string, dir string, fd []*File { // Create array of integer (system) fds. intfd := make([]int, len(fd)); - for i, f := range(fd) { + for i, f := range fd { if f == nil { intfd[i] = -1; } else { |