diff options
Diffstat (limited to 'libgo/runtime/go-unwind.c')
-rw-r--r-- | libgo/runtime/go-unwind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/runtime/go-unwind.c b/libgo/runtime/go-unwind.c index ea11e4e3..fb59115 100644 --- a/libgo/runtime/go-unwind.c +++ b/libgo/runtime/go-unwind.c @@ -67,8 +67,8 @@ __go_check_defer (_Bool *frame) n = (Panic *) __go_alloc (sizeof (Panic)); - n->arg.__type_descriptor = NULL; - n->arg.__object = NULL; + n->arg._type = NULL; + n->arg.data = NULL; n->recovered = 0; n->isforeign = 1; n->next = g->_panic; |