beam/examples/beamsh: cosmetic fix in Fatalf

Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
This commit is contained in:
Solomon Hykes 2014-03-31 12:01:06 -07:00
parent c27c56ca37
commit 2edf4802d8

View file

@ -631,7 +631,7 @@ func Debugf(msg string, args ...interface{}) {
}
func Fatalf(msg string, args ...interface{}) {
Logf(msg, args)
Logf(msg, args...)
os.Exit(1)
}