1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-24 00:13:21 +00:00

gofix's formatting pointed out this space

This commit is contained in:
raylu 2011-05-16 22:18:55 -05:00
parent 114b31f3c7
commit f6a130d82d

View file

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