summaryrefslogtreecommitdiff
path: root/src/lib/runtime/runtime.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-06-05 10:59:25 -0700
committerRuss Cox <rsc@golang.org>2009-06-05 10:59:25 -0700
commit3ef9634db68330266388315ee04a9d37b6701f44 (patch)
treec6761a1b516b8b9709bc155e9b2556c6e835ca80 /src/lib/runtime/runtime.go
parentfe71909380de24d00b857cba01e80662d114075b (diff)
downloadgolang-3ef9634db68330266388315ee04a9d37b6701f44.tar.gz
fix 386 log test
R=r DELTA=13 (0 added, 1 deleted, 12 changed) OCL=29928 CL=29943
Diffstat (limited to 'src/lib/runtime/runtime.go')
-rw-r--r--src/lib/runtime/runtime.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/runtime/runtime.go b/src/lib/runtime/runtime.go
index 07c674847..6fb5756d6 100644
--- a/src/lib/runtime/runtime.go
+++ b/src/lib/runtime/runtime.go
@@ -25,4 +25,4 @@ func Breakpoint()
// ascend, with 1 identifying the the caller of Caller. The return values report the
// program counter, file name, and line number within the file of the corresponding
// call. The boolean ok is false if it was not possible to recover the information.
-func Caller(n int) (pc uint64, file string, line int, ok bool)
+func Caller(n int) (pc uintptr, file string, line int, ok bool)