summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-12-30 22:49:48 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-12-30 22:49:48 +0000
commitca0865db542f5525da7fb179a6f41d2f366662b5 (patch)
tree734f864178c35c0c34fbad0cc1301cb56f0abe92 /gdb
parent4fb192bec12a820bbe443550449101c44b936759 (diff)
downloadbinutils-gdb-ca0865db542f5525da7fb179a6f41d2f366662b5.tar.gz
* values.c (unpack_long): Fix garbled error message.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog2
-rw-r--r--gdb/values.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e88256e9d0b..33a9ed3821c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,7 @@
Thu Dec 30 10:16:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
+ * values.c (unpack_long): Fix garbled error message.
+
* remote-mips.c (mips_error): New function.
* remote-mips.c: Use it instead of error() most places.
diff --git a/gdb/values.c b/gdb/values.c
index 7191abaa710..451cf51e962 100644
--- a/gdb/values.c
+++ b/gdb/values.c
@@ -618,7 +618,7 @@ unpack_long (type, valaddr)
error ("not implemented: member types in unpack_long");
default:
- error ("Value can't be converted to intenot integer or pointer.");
+ error ("Value can't be converted to integer.");
}
return 0; /* Placate lint. */
}