diff options
author | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2007-11-27 20:13:12 +0000 |
---|---|---|
committer | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2007-11-27 20:13:12 +0000 |
commit | a4ae0ca1db883a8c7bdef85ad3598444c7dd8dec (patch) | |
tree | 3244002a4c0326ff27decceeb225030561e5c640 /gdb/dfp.c | |
parent | c0993dbe928fa5aee10ebe8d1aaaf07b24d88db9 (diff) | |
download | gdb-a4ae0ca1db883a8c7bdef85ad3598444c7dd8dec.zip gdb-a4ae0ca1db883a8c7bdef85ad3598444c7dd8dec.tar.gz gdb-a4ae0ca1db883a8c7bdef85ad3598444c7dd8dec.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/dfp.c')
-rw-r--r-- | gdb/dfp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |