From 2f4b8b7e8dbdc1861ee83b63d92ab0921045861f Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Mon, 31 Mar 2014 12:01:06 -0700 Subject: [PATCH] beam/examples/beamsh: cosmetic fix in Fatalf Docker-DCO-1.1-Signed-off-by: Solomon Hykes (github: shykes) --- pkg/beam/examples/beamsh/beamsh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/beam/examples/beamsh/beamsh.go b/pkg/beam/examples/beamsh/beamsh.go index ef4354f93..fa6a8d165 100644 --- a/pkg/beam/examples/beamsh/beamsh.go +++ b/pkg/beam/examples/beamsh/beamsh.go @@ -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) }