From ca0865db542f5525da7fb179a6f41d2f366662b5 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Thu, 30 Dec 1993 22:49:48 +0000 Subject: [PATCH] * values.c (unpack_long): Fix garbled error message. --- gdb/ChangeLog | 2 ++ gdb/values.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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. */ } -- 2.30.2