diff --git a/gdb/frame.c b/gdb/frame.c index 2332418f347..4d7505f7ae3 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -467,9 +467,9 @@ frame_info::to_string () const res += "type=,"; if (fi->unwind != NULL) - res += string_printf ("unwind=%p,", host_address_to_string (fi->unwind)); + res += string_printf ("unwinder=\"%s\",", fi->unwind->name); else - res += "unwind=,"; + res += "unwinder=,"; if (fi->next == NULL || fi->next->prev_pc.status == CC_UNKNOWN) res += "pc=,";