diff options
author | Michael Snyder <msnyder@vmware.com> | 2011-01-11 15:10:03 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2011-01-11 15:10:03 +0000 |
commit | 9b20d036b6804e167f6b3a843661022ed46399bb (patch) | |
tree | 6f390f9b7338d77b0d1de99a5e97d770d61e2093 /gdb/rs6000-nat.c | |
parent | dae477fed8cdd8063a79042f2781a983be1c728d (diff) | |
download | gdb-9b20d036b6804e167f6b3a843661022ed46399bb.zip gdb-9b20d036b6804e167f6b3a843661022ed46399bb.tar.gz gdb-9b20d036b6804e167f6b3a843661022ed46399bb.tar.bz2 |
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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index ec1e401..e357c4d 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 { |