aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-08-02 19:12:16 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-08-02 19:12:16 +0200
commit23dfd8f8f907c6d0961bb9a05a03709e5a8af4a3 (patch)
tree5eb8196ef5cccf49224a3dda26bf80e7097c1b0b /cmd
parentc557d03352a990cce73216e23c9c50da17ac8d8a (diff)
Make a global local
Diffstat (limited to 'cmd')
-rw-r--r--cmd/extpo/main.go2
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 {