2005-02-11 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / vaxbsd-nat.c
index bd505be766e1c18871e755f1da8191e08bce410c..533e1fdf8773f690d85ef849386b40f7059c629f 100644 (file)
@@ -71,7 +71,7 @@ vaxbsd_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"));
 
   vaxbsd_supply_gregset (current_regcache, &regs);
 }
@@ -86,13 +86,13 @@ vaxbsd_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"));
 
   vaxbsd_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"));
 }
 \f
 
This page took 0.027138 seconds and 4 git commands to generate.