diff options
Diffstat (limited to 'libgo/go/exp/ebnflint/ebnflint.go')
-rw-r--r-- | libgo/go/exp/ebnflint/ebnflint.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/exp/ebnflint/ebnflint.go b/libgo/go/exp/ebnflint/ebnflint.go index c827716c44c..6d6f516c905 100644 --- a/libgo/go/exp/ebnflint/ebnflint.go +++ b/libgo/go/exp/ebnflint/ebnflint.go @@ -31,7 +31,7 @@ var ( close = []byte(`</pre>`) ) -func report(err os.Error) { +func report(err error) { scanner.PrintError(os.Stderr, err) os.Exit(1) } @@ -78,7 +78,7 @@ func main() { var ( filename string src []byte - err os.Error + err error ) switch flag.NArg() { case 0: |