diff options
Diffstat (limited to 'gdb/frame.c')
-rw-r--r-- | gdb/frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/frame.c b/gdb/frame.c index 2332418..4d7505f 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -467,9 +467,9 @@ frame_info::to_string () const res += "type=<unknown>,"; 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=<unknown>,"; + res += "unwinder=<unknown>,"; if (fi->next == NULL || fi->next->prev_pc.status == CC_UNKNOWN) res += "pc=<unknown>,"; |