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
commita4ae0ca1db883a8c7bdef85ad3598444c7dd8dec (patch)
tree3244002a4c0326ff27decceeb225030561e5c640 /gdb/dfp.c
parentc0993dbe928fa5aee10ebe8d1aaaf07b24d88db9 (diff)
downloadbinutils-gdb-a4ae0ca1db883a8c7bdef85ad3598444c7dd8dec.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;
}