aboutsummaryrefslogtreecommitdiff
path: root/gdb/dummy-frame.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/dummy-frame.c')
-rw-r--r--gdb/dummy-frame.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/gdb/dummy-frame.c b/gdb/dummy-frame.c
index bdfd518..80e2d51 100644
--- a/gdb/dummy-frame.c
+++ b/gdb/dummy-frame.c
@@ -405,14 +405,10 @@ fprint_dummy_frames (struct ui_file *file)
struct dummy_frame *s;
for (s = dummy_frame_stack; s != NULL; s = s->next)
- {
- gdb_print_host_address (s, file);
- fprintf_unfiltered (file, ":");
- fprintf_unfiltered (file, " id=%s", s->id.id.to_string ().c_str ());
- fprintf_unfiltered (file, ", ptid=%s",
- target_pid_to_str (s->id.thread->ptid).c_str ());
- fprintf_unfiltered (file, "\n");
- }
+ fprintf_unfiltered (file, "%s: id=%s, ptid=%s\n",
+ host_address_to_string (s),
+ s->id.id.to_string ().c_str (),
+ target_pid_to_str (s->id.thread->ptid).c_str ());
}
static void