summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-29 18:19:06 +0200
committerPaul Buetow <paul@buetow.org>2025-03-29 18:19:06 +0200
commitb8ac7c88b203ba5475cbca63669ce654c2ed49ea (patch)
tree3fc6d2539ced1d4012f9bf0fe69d4d191e2a5049 /cmd
parentdc5c405f6afb9fc59ba73e7dbc7cd3564983ae6e (diff)
flags is now a singleton
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ior/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/ior/main.go b/cmd/ior/main.go
index 2d8584a..f085c60 100644
--- a/cmd/ior/main.go
+++ b/cmd/ior/main.go
@@ -10,5 +10,6 @@ func main() {
if runtime.GOOS != "linux" {
panic("Unsupported OS")
}
- internal.Run(flags.New())
+ flags.Parse()
+ internal.Run()
}