* values.c (unpack_long): Fix garbled error message.
authorJim Kingdon <jkingdon@engr.sgi.com>
Thu, 30 Dec 1993 22:49:48 +0000 (22:49 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Thu, 30 Dec 1993 22:49:48 +0000 (22:49 +0000)
gdb/ChangeLog
gdb/values.c

index e88256e9d0b689cfca9535a661db14ddd531d10e..33a9ed3821cbd8484e4f5944944ac84e8176d74a 100644 (file)
@@ -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.
 
index 7191abaa7101341391b92ac1228fb886b83a0085..451cf51e962db7d34b24abee252d99250db7c8b7 100644 (file)
@@ -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.  */
 }