X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fremote-rdp.c;h=8c9288d96ab2fbbc0525e26763d9b77d074f435d;hb=8a3fe4f86c51d363e10efed1046ebcbdc853ae99;hp=f8d9d8b77b1bdae37900d24d96cb5a8d12794171;hpb=ebdda33727b00fe468518fb23df0a9914b9ad8a6;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/remote-rdp.c b/gdb/remote-rdp.c index f8d9d8b77b..8c9288d96a 100644 --- a/gdb/remote-rdp.c +++ b/gdb/remote-rdp.c @@ -193,7 +193,7 @@ get_byte (void) if (timeout == 0) return (unsigned char) c; - error ("Timeout reading from remote_system"); + error (_("Timeout reading from remote_system")); } return c; @@ -387,7 +387,7 @@ rdp_init (int cold, int tty) if (!sync) { - error ("Couldn't reset the board, try pressing the reset button"); + error (_("Couldn't reset the board, try pressing the reset button")); } } @@ -454,10 +454,10 @@ send_rdp (char *template,...) printf_unfiltered ("RDP: Unimplemented message\n"); return; case 255: - error ("Command garbled"); + error (_("Command garbled")); break; default: - error ("Corrupt reply from target"); + error (_("Corrupt reply from target")); break; } break; @@ -988,7 +988,7 @@ handle_swi (void) break; default: - error ("Unimplemented SWI argument"); + error (_("Unimplemented SWI argument")); } type = type >> 2; @@ -1357,7 +1357,7 @@ remote_rdp_create_inferior (char *exec_file, char *allargs, char **env, CORE_ADDR entry_point; if (exec_file == 0 || exec_bfd == 0) - error ("No executable file specified."); + error (_("No executable file specified.")); entry_point = (CORE_ADDR) bfd_get_start_address (exec_bfd);