diff options
Diffstat (limited to 'cmd/extpo/main.go')
-rw-r--r-- | cmd/extpo/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/extpo/main.go b/cmd/extpo/main.go index 4b3ef6d..3a72a30 100644 --- a/cmd/extpo/main.go +++ b/cmd/extpo/main.go @@ -41,7 +41,6 @@ func (l loc) String() string { } var ( - outfile *os.File currentFile []byte currentPath string lastComment string @@ -76,6 +75,7 @@ func main() { os.Exit(1) } + var outfile *os.File if *outpath == "-" { outfile = os.Stdout } else { |