summaryrefslogtreecommitdiff
path: root/vm_dump.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_dump.c')
-rw-r--r--vm_dump.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/vm_dump.c b/vm_dump.c
index 5221b449fa..38b8f25eeb 100644
--- a/vm_dump.c
+++ b/vm_dump.c
@@ -571,6 +571,8 @@ thread_dump_state(VALUE self)
return Qnil;
}
+VALUE rb_make_backtrace(void);
+
void
rb_vm_bugreport(void)
{
@@ -581,7 +583,7 @@ rb_vm_bugreport(void)
int i;
SDR();
- bt = rb_make_backtrace(th, 0);
+ bt = rb_make_backtrace();
if (TYPE(bt) == T_ARRAY)
for (i = 0; i < RARRAY_LEN(bt); i++) {
dp(RARRAY_PTR(bt)[i]);