aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2003-02-27 18:08:25 +0000
committerMichael Snyder <msnyder@vmware.com>2003-02-27 18:08:25 +0000
commitd05bb1fc0260759c2685cc65e790cc06a6529222 (patch)
tree1d3c835ca3004f99a2b6dabd02cc9ae3f1fc3fcb
parentf3824013e0e5ea9b81760142c36779eadf7722d3 (diff)
downloadfsf-binutils-gdb-d05bb1fc0260759c2685cc65e790cc06a6529222.zip
fsf-binutils-gdb-d05bb1fc0260759c2685cc65e790cc06a6529222.tar.gz
fsf-binutils-gdb-d05bb1fc0260759c2685cc65e790cc06a6529222.tar.bz2
2003-02-27 Michael Snyder <msnyder@redhat.com>
* doublest.c (extract_floating): Fix warning text.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/doublest.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e1cdf81..7126896 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2003-02-27 Michael Snyder <msnyder@redhat.com>
+
+ * doublest.c (extract_floating): Fix warning text.
+
2003-02-27 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Procedure with
diff --git a/gdb/doublest.c b/gdb/doublest.c
index 49e3689..e601a4d 100644
--- a/gdb/doublest.c
+++ b/gdb/doublest.c
@@ -663,7 +663,7 @@ extract_floating (const void *addr, int len)
if (fmt == NULL)
{
- warning ("Can't store a floating-point number of %d bytes.", len);
+ warning ("Can't extract a floating-point number of %d bytes.", len);
return NAN;
}