Fix the usage message

This commit is contained in:
Přemysl Eric Janouch 2019-04-19 12:30:13 +02:00
parent c7597b73c2
commit 0fcc67c121
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ import (
func main() {
if len(os.Args) != 3 {
log.Fatalln("usage: %s LISTEN-ADDRESS DATABASE-FILE", os.Args[0])
log.Fatalf("Usage: %s LISTEN-ADDRESS DATABASE-FILE\n", os.Args[0])
}
listenAddr, dbFilename := os.Args[1], os.Args[2]