diff options
Diffstat (limited to 'gdb/netbsd-nat.c')
-rw-r--r-- | gdb/netbsd-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/netbsd-nat.c b/gdb/netbsd-nat.c index d1614ec..0cfcb45 100644 --- a/gdb/netbsd-nat.c +++ b/gdb/netbsd-nat.c @@ -250,7 +250,7 @@ nbsd_nat_target::find_memory_regions (find_memory_region_ftype func, { gdb_printf ("Save segment, %ld bytes at %s (%c%c%c)\n", (long) size, - paddress (target_gdbarch (), kve->kve_start), + paddress (current_inferior ()->arch (), kve->kve_start), kve->kve_protection & KVME_PROT_READ ? 'r' : '-', kve->kve_protection & KVME_PROT_WRITE ? 'w' : '-', kve->kve_protection & KVME_PROT_EXEC ? 'x' : '-'); |