* values.c (unpack_long): Fix garbled error message.

This commit is contained in:
Jim Kingdon 1993-12-30 22:49:48 +00:00
parent 4fb192bec1
commit ca0865db54
2 changed files with 3 additions and 1 deletions

View 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.

View 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. */
}