aboutsummaryrefslogtreecommitdiff
path: root/gdb/hppabsd-nat.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/hppabsd-nat.c')
-rw-r--r--gdb/hppabsd-nat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/hppabsd-nat.c b/gdb/hppabsd-nat.c
index fb53c96..a7a85e5 100644
--- a/gdb/hppabsd-nat.c
+++ b/gdb/hppabsd-nat.c
@@ -90,7 +90,7 @@ fetch_inferior_registers (int regnum)
if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
(PTRACE_TYPE_ARG3) &regs, 0) == -1)
- perror_with_name ("Couldn't get registers");
+ perror_with_name (_("Couldn't get registers"));
hppabsd_supply_gregset (regcache, &regs);
}
@@ -108,12 +108,12 @@ store_inferior_registers (int regnum)
if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
(PTRACE_TYPE_ARG3) &regs, 0) == -1)
- perror_with_name ("Couldn't get registers");
+ perror_with_name (_("Couldn't get registers"));
hppabsd_collect_gregset (current_regcache, &regs, regnum);
if (ptrace (PT_SETREGS, PIDGET (inferior_ptid),
(PTRACE_TYPE_ARG3) &regs, 0) == -1)
- perror_with_name ("Couldn't write registers");
+ perror_with_name (_("Couldn't write registers"));
}
}