summaryrefslogtreecommitdiff
path: root/gdb/values.c
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/values.c
parent4fb192bec12a820bbe443550449101c44b936759 (diff)
downloadbinutils-gdb-ca0865db542f5525da7fb179a6f41d2f366662b5.tar.gz
* values.c (unpack_long): Fix garbled error message.
Diffstat (limited to 'gdb/values.c')
-rw-r--r--gdb/values.c2
1 files changed, 1 insertions, 1 deletions
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. */
}