From 7a4893150847d79411a1c80e7a63d8d3f7526d1f Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Sat, 25 May 2013 09:51:29 -0700 Subject: [PATCH] go.tools/ssa: fix debug printing R=adonovan, r CC=golang-dev https://golang.org/cl/9774043 --- ssa/promote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssa/promote.go b/ssa/promote.go index 1b8a9837f92..965b748c8db 100644 --- a/ssa/promote.go +++ b/ssa/promote.go @@ -262,7 +262,7 @@ func makeBridgeMethod(prog *Program, typ types.Type, cand *candidate) *Function sig := types.NewSignature(types.NewVar(nil, "recv", typ), old.Params(), old.Results(), old.IsVariadic()) if prog.mode&LogSource != 0 { - defer logStack("makeBridgeMethod %s, %s, type %s", typ, cand, &sig)() + defer logStack("makeBridgeMethod %s, %s, type %s", typ, cand, sig)() } fn := &Function{