Skip to content

Commit

Permalink
Don't use printf without formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvensson committed May 18, 2021
1 parent 09ba276 commit a6757d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func init() {
"",
}

fmt.Fprintf(os.Stderr, strings.Join(h, "\n"))
fmt.Fprint(os.Stderr, strings.Join(h, "\n"))
}
}

Expand Down

0 comments on commit a6757d6

Please # to comment.