diff options
author | Paul Brook <paul@codesourcery.com> | 2006-10-21 17:59:08 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2006-10-21 17:59:08 +0000 |
commit | 3732ba62b966ae0d1184fbe2fbe2024f0f7ce6b1 (patch) | |
tree | 0f2d560f138c0ce5bdbf57364b7e9f7fb3c4bfb6 /gdb/remote.c | |
parent | gdb.texinfo (Source Annotations): Fix index entries by adding (diff) | |
download | binutils-gdb-3732ba62b966ae0d1184fbe2fbe2024f0f7ce6b1.tar.gz binutils-gdb-3732ba62b966ae0d1184fbe2fbe2024f0f7ce6b1.tar.bz2 binutils-gdb-3732ba62b966ae0d1184fbe2fbe2024f0f7ce6b1.zip |
2006-10-21 Paul Brook <paul@codesourcery.com>
* remote.c (remote_fetch_registers): Fix error message.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 66859719a0d..1744b0fc54d 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -3530,7 +3530,7 @@ remote_fetch_registers (int regnum) register_bytes_found = i; if (REGISTER_BYTES_OK_P () && !REGISTER_BYTES_OK (i)) - warning (_("Remote reply is too short: %s"), buf); + warning (_("Remote reply is wrong length: %s"), buf); } supply_them: |