Browse Source

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

gdb-4_18-branch
Jim Kingdon 33 years ago
parent
commit
ca0865db54
  1. 2
      gdb/ChangeLog
  2. 2
      gdb/values.c

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

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

Loading…
Cancel
Save