summaryrefslogtreecommitdiff
path: root/gdb/m88kbsd-nat.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/m88kbsd-nat.c')
-rw-r--r--gdb/m88kbsd-nat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/m88kbsd-nat.c b/gdb/m88kbsd-nat.c
index 472eb76d5b8..2a2b28e6da1 100644
--- a/gdb/m88kbsd-nat.c
+++ b/gdb/m88kbsd-nat.c
@@ -71,7 +71,7 @@ m88kbsd_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"));
m88kbsd_supply_gregset (current_regcache, &regs);
}
@@ -86,13 +86,13 @@ m88kbsd_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"));
m88kbsd_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"));
}