aboutsummaryrefslogtreecommitdiff
path: root/src/internal/bisect/bisect.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/bisect/bisect.go')
-rw-r--r--src/internal/bisect/bisect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/bisect/bisect.go b/src/internal/bisect/bisect.go
index fa753e80e7..a79bb8000d 100644
--- a/src/internal/bisect/bisect.go
+++ b/src/internal/bisect/bisect.go
@@ -496,7 +496,7 @@ func printStack(w Writer, h uint64, stk []uintptr) error {
for {
f, more := frames.Next()
buf = append(buf, prefix...)
- buf = append(buf, f.Func.Name()...)
+ buf = append(buf, f.Function...)
buf = append(buf, "()\n"...)
buf = append(buf, prefix...)
buf = append(buf, '\t')