Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: use proper formatter for usage template (h2non#347)
Co-authored-by: Mads Moeller <[email protected]>
  • Loading branch information
mmoeller and mmoeller authored Feb 20, 2021
commit fe080abcd6044227566bd1281b2ade631b94cc58
2 changes: 1 addition & 1 deletion imaginary.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ type URLSignature struct {

func main() {
flag.Usage = func() {
_, _ = fmt.Fprint(os.Stderr, usage, Version, runtime.NumCPU())
_, _ = fmt.Fprintf(os.Stderr, usage, Version, runtime.NumCPU())
}
flag.Parse()

Expand Down