aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}