gofmt'ed various stragglers

R=rsc
http://go/go-review/1022002
This commit is contained in:
Robert Griesemer 2009-11-05 18:24:53 -08:00
parent 183edddb9d
commit 7e92eedced
4 changed files with 408 additions and 408 deletions

View file

@ -152,7 +152,7 @@ func walk(path string, d *os.Dir, v Visitor, errors chan<- os.Error) {
}
if !v.VisitDir(path, d) {
return; // skip directory entries
return; // skip directory entries
}
list, err := io.ReadDir(path);
@ -180,7 +180,7 @@ func Walk(root string, v Visitor, errors chan<- os.Error) {
if errors != nil {
errors <- err;
}
return; // can't progress
return; // can't progress
}
walk(root, d, v, errors);
}