From a4ae0ca1db883a8c7bdef85ad3598444c7dd8dec Mon Sep 17 00:00:00 2001 From: Thiago Jung Bauermann Date: Tue, 27 Nov 2007 20:13:12 +0000 Subject: [PATCH] * dfp.c (decimal_from_string): Remove superfluous newline from error string. (decimal_to_string): Likewise. * printcmd.c (printf_command): Change string buffer to use MAX_DECIMAL_STRING constant. * value.c (value_from_decfloat): Likewise. --- gdb/ChangeLog | 9 +++++++++ gdb/dfp.c | 4 ++-- gdb/printcmd.c | 2 +- gdb/value.c | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6dfdde0..d69e652 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +2007-11-27 Thiago Jung Bauermann + + * dfp.c (decimal_from_string): Remove superfluous newline from + error string. + (decimal_to_string): Likewise. + * printcmd.c (printf_command): Change string buffer to use + MAX_DECIMAL_STRING constant. + * value.c (value_from_decfloat): Likewise. + 2007-11-27 Ulrich Weigand * Makefile.in (ALL_TARGET_OBS): Remove object files that require diff --git a/gdb/dfp.c b/gdb/dfp.c index 67cee13..2aadfbd 100644 --- a/gdb/dfp.c +++ b/gdb/dfp.c @@ -71,7 +71,7 @@ decimal_to_string (const gdb_byte *decbytes, int len, char *s) decimal128ToString ((decimal128 *) dec, s); break; default: - error (_("Unknown decimal floating point type.\n")); + error (_("Unknown decimal floating point type.")); break; } } @@ -103,7 +103,7 @@ decimal_from_string (gdb_byte *decbytes, int len, const char *string) decimal128FromString ((decimal128 *) dec, string, &set); break; default: - error (_("Unknown decimal floating point type.\n")); + error (_("Unknown decimal floating point type.")); break; } diff --git a/gdb/printcmd.c b/gdb/printcmd.c index 2095727..e531175 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -2128,7 +2128,7 @@ printf_command (char *arg, int from_tty) case decfloat_arg: { char *eos; - char decstr[128]; + char decstr[MAX_DECIMAL_STRING]; unsigned int dfp_len = TYPE_LENGTH (value_type (val_args[i])); unsigned char *dfp_value_ptr = (unsigned char *) value_contents_all (val_args[i]) + value_offset (val_args[i]); diff --git a/gdb/value.c b/gdb/value.c index 89759b8..e29bab7 100644 --- a/gdb/value.c +++ b/gdb/value.c @@ -1652,7 +1652,7 @@ value_from_decfloat (struct type *expect_type, struct type *type, if (expect_type) { int expect_len = TYPE_LENGTH (expect_type); - char decstr[128]; + char decstr[MAX_DECIMAL_STRING]; int real_len; decimal_to_string (decbytes, len, decstr); -- 2.7.4