summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2003-02-27 18:08:25 +0000
committerMichael Snyder <msnyder@specifix.com>2003-02-27 18:08:25 +0000
commitbbf1da9001a02e56a1cb20728b686a1c3851c641 (patch)
tree26e7058932b6048e56e259daba5d5513850bdb69
parent9b091ab538281737f360c30145620dba76e863b5 (diff)
downloadgdb-bbf1da9001a02e56a1cb20728b686a1c3851c641.tar.gz
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 e1cdf816327..71268969094 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 49e36899111..e601a4dc405 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;
}