gencerts: Add missing newline for unknown algorithm error

This commit is contained in:
Josh Rickmar 2020-10-15 20:59:12 +00:00 committed by Dave Collins
parent bd99dbe0b5
commit aec945a550

View File

@ -80,7 +80,7 @@ func main() {
case "Ed25519":
keygen = ed25519KeyGen
default:
fmt.Fprintf(os.Stderr, "unknown algorithm %q", cfg.Algo)
fmt.Fprintf(os.Stderr, "unknown algorithm %q\n", cfg.Algo)
usage(parser)
}