Skip to content

Commit

Permalink
use fmt.Fprint instead of fmt.Fprintf to satisfy linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew LeFevre authored and Andrew LeFevre committed Sep 28, 2024
1 parent 243bef3 commit d4b0bab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/egress-eddie/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

func usage() {
fmt.Fprintf(os.Stderr, `
fmt.Fprint(os.Stderr, `
Egress Eddie filters arbitrary outbound network traffic by hostname.
eddie-eddie [flags]
Expand All @@ -38,7 +38,7 @@ Egress Eddie accepts the following flags:
`[1:])
flag.PrintDefaults()
fmt.Fprintf(os.Stderr, `
fmt.Fprint(os.Stderr, `
For more information, see https://github.com/capnspacehook/egress-eddie.
`[1:])
Expand Down

0 comments on commit d4b0bab

Please sign in to comment.