summaryrefslogtreecommitdiff
path: root/gdb/nto-procfs.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2011-01-11 15:09:54 +0000
committerMichael Snyder <msnyder@specifix.com>2011-01-11 15:09:54 +0000
commit91d92eade9b57f7baaa2c255d07ca42347f9204b (patch)
treedd2337e3c79f40b593f0c02ac18e543820292e25 /gdb/nto-procfs.c
parent601e037e8e18057678379ee347c5a4f02874cf33 (diff)
downloadgdb-91d92eade9b57f7baaa2c255d07ca42347f9204b.tar.gz
2011-01-11 Michael Snyder <msnyder@vmware.com>
* arm-tdep.c: Internationalization. * c-lang.c: Ditto. * charset.c: Ditto. * fork-child.c: Ditto. * nto-procfs.c: Ditto. * ppc-sysv-tdep.c: Ditto. * procfs.c: Ditto. * remote-mips.c: Ditto. * remote.c: Ditto. * rs6000-nat.c: Ditto. * rs6000-tdep.c: Ditto. * target.c: Ditto. * valops.c: Ditto. * value.c: Ditto. * xml-support.c: Ditto. * mi/mi-cmd-break.c: Ditto. * mi/mi-cmd-var.c: Ditto. * mi/mi-interp.c: Ditto. * mi/mi-main.c: Ditto.
Diffstat (limited to 'gdb/nto-procfs.c')
-rw-r--r--gdb/nto-procfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c
index aa9599b42da..bd7a6b09823 100644
--- a/gdb/nto-procfs.c
+++ b/gdb/nto-procfs.c
@@ -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;