summaryrefslogtreecommitdiff
path: root/gdb/dfp.c
diff options
context:
space:
mode:
authorThiago Jung Bauermann <bauerman@br.ibm.com>2007-11-27 20:13:12 +0000
committerThiago Jung Bauermann <bauerman@br.ibm.com>2007-11-27 20:13:12 +0000
commit483ddee9660b85cf4f68053f7af5893563488709 (patch)
tree3419c89a59f97e3cfec818c56d51508704d85e82 /gdb/dfp.c
parent27a869e52455db99ae8532701a500d127fe5ee46 (diff)
downloadgdb-483ddee9660b85cf4f68053f7af5893563488709.tar.gz
* 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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dfp.c b/gdb/dfp.c
index 67cee138b73..2aadfbd99a6 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;
}