From 3cf484f376a58bf2a7e87dc0640de858c2120262 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) --- examples/beamsh/beamsh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/beamsh/beamsh.go b/examples/beamsh/beamsh.go index ef4354f936..fa6a8d1654 100644 --- a/examples/beamsh/beamsh.go +++ b/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) }