From f6a130d82dfe53162974c94d14e2fc1a647aeadb Mon Sep 17 00:00:00 2001 From: raylu Date: Mon, 16 May 2011 22:18:55 -0500 Subject: [PATCH] gofix's formatting pointed out this space --- handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler.go b/handler.go index 99c14a1..81191d3 100644 --- a/handler.go +++ b/handler.go @@ -69,7 +69,7 @@ func handlePrivmsg(conn *irc.Conn, line *irc.Line) { cutoff := runtime.FuncForPC(reflect.ValueOf(handlePrivmsg).Pointer()).Entry() for _, pc := range callers { function := runtime.FuncForPC(pc - 1) - if function.Entry() == cutoff{ + if function.Entry() == cutoff { break } file, line := function.FileLine(pc - 1)