PR 12590
[deliverable/binutils-gdb.git] / gdb / nto-procfs.c
index aa9599b42dab3854664d93f3afdca2364481e10c..bd7a6b0982398d2475e250ff06cc2e16c3e3be79 100644 (file)
@@ -1009,7 +1009,7 @@ procfs_resume (struct target_ops *ops,
   errno = devctl (ctl_fd, DCMD_PROC_RUN, &run, sizeof (run), 0);
   if (errno != EOK)
     {
-      perror ("run error!\n");
+      perror (_("run error!\n"));
       return;
     }
 }
@@ -1494,7 +1494,7 @@ procfs_hw_watchpoint (int addr, int len, int type)
   errno = devctl (ctl_fd, DCMD_PROC_BREAK, &brk, sizeof (brk), 0);
   if (errno != EOK)
     {
-      perror ("Failed to set hardware watchpoint");
+      perror (_("Failed to set hardware watchpoint"));
       return -1;
     }
   return 0;
This page took 0.023974 seconds and 4 git commands to generate.