1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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 4f92ffb500
commit 2f4b8b7e8d

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)
}