cmd/hydroxide: fix redundant newline when printing usage

cmd/hydroxide/main.go:558:3: fmt.Println arg list ends with redundant newline
This commit is contained in:
Simon Ser 2022-05-06 19:26:33 +02:00
parent 9ef1b1c30b
commit 9eedfb6954
1 changed files with 1 additions and 1 deletions

View File

@ -555,7 +555,7 @@ func main() {
log.Fatal(err)
}
default:
fmt.Println(usage)
fmt.Print(usage)
if cmd != "help" {
log.Fatal("Unrecognized command")
}