diff options
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index aadd6ca..0bf47d5 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -14557,7 +14557,7 @@ insert_single_step_breakpoints (struct gdbarch *gdbarch) if (!next_pcs.empty ()) { struct frame_info *frame = get_current_frame (); - struct address_space *aspace = get_frame_address_space (frame); + const address_space *aspace = get_frame_address_space (frame); for (CORE_ADDR pc : next_pcs) insert_single_step_breakpoint (gdbarch, aspace, pc); |