From 2edf4802d856341031c49bcd16eb04e7d4f4907f 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) --- beam/examples/beamsh/beamsh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beam/examples/beamsh/beamsh.go b/beam/examples/beamsh/beamsh.go index ef4354f..fa6a8d1 100644 --- a/beam/examples/beamsh/beamsh.go +++ b/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) }