Merge pull request #76565 from xichengliudui/ends-With-Newline

Use fmt.printf() to end with a newline
This commit is contained in:
Kubernetes Prow Robot
2019-04-15 14:25:22 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ func check(options ...string) []error {
case "kernel":
errs = appendNotNil(errs, kernel())
default:
fmt.Printf("Unrecognized option %s", c)
fmt.Printf("Unrecognized option %s\n", c)
errs = append(errs, fmt.Errorf("Unrecognized option %s", c))
}
}