diff options
Diffstat (limited to 'libgo/runtime/go-caller.c')
-rw-r--r-- | libgo/runtime/go-caller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/go-caller.c b/libgo/runtime/go-caller.c index e97b850..a5c687d 100644 --- a/libgo/runtime/go-caller.c +++ b/libgo/runtime/go-caller.c @@ -177,7 +177,7 @@ Caller (int skip) int32 n; runtime_memclr (&ret, sizeof ret); - n = runtime_callers (skip + 1, &loc, 1); + n = runtime_callers (skip + 1, &loc, 1, false); if (n < 1) return ret; ret.pc = loc.pc; |