summaryrefslogtreecommitdiff
path: root/gdb/rs6000-nat.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/rs6000-nat.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/rs6000-nat.c')
-rw-r--r--gdb/rs6000-nat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c
index ec1e4019780..e357c4d139a 100644
--- a/gdb/rs6000-nat.c
+++ b/gdb/rs6000-nat.c
@@ -259,7 +259,7 @@ fetch_register (struct regcache *regcache, int regno)
{
#if 0
/* FIXME: this happens 3 times at the start of each 64-bit program. */
- perror ("ptrace read");
+ perror (_("ptrace read"));
#endif
errno = 0;
}
@@ -327,7 +327,7 @@ store_register (struct regcache *regcache, int regno)
if (errno)
{
- perror ("ptrace write");
+ perror (_("ptrace write"));
errno = 0;
}
}
@@ -610,7 +610,7 @@ exec_one_dummy_insn (struct regcache *regcache)
(int *) 1, 0, NULL);
if (ret != 0)
- perror ("pt_continue");
+ perror (_("pt_continue"));
do
{