summaryrefslogtreecommitdiff
path: root/gdb/dfp.c
diff options
context:
space:
mode:
authorThiago Jung Bauermann <bauerman@br.ibm.com>2008-01-09 19:27:15 +0000
committerThiago Jung Bauermann <bauerman@br.ibm.com>2008-01-09 19:27:15 +0000
commit689e4e2d8a2fd0d55acc62c746fdcc302f851995 (patch)
treef444c80441738f50b041e6c996813da97f44278a /gdb/dfp.c
parent7ddd14deffa8d2579c691bb8f19585fb2e7b5de3 (diff)
downloadbinutils-gdb-689e4e2d8a2fd0d55acc62c746fdcc302f851995.tar.gz
* doublest.h (DOUBLEST_PRINT_FORMAT): Remove % from string.
(DOUBLEST_SCAN_FORMAT): Likewise. * dfp.c (decimal_from_floating): Use DOUBLEST_PRINT_FORMAT. * ada-lex.l (processReal): Prepend "%" to use of DOUBLEST_SCAN_FORMAT. * c-exp.y (parse_number): Likewise. * jv-exp.y (parse_number): Likewise. * objc-exp.y (parse_number): Likewise. * p-exp.y (parse_number): Likewise.
Diffstat (limited to 'gdb/dfp.c')
-rw-r--r--gdb/dfp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/dfp.c b/gdb/dfp.c
index bf82114634b..e184ecdd346 100644
--- a/gdb/dfp.c
+++ b/gdb/dfp.c
@@ -237,7 +237,8 @@ decimal_from_floating (struct value *from, gdb_byte *to, int len)
char *buffer;
int ret;
- ret = asprintf (&buffer, "%.30Lg", value_as_double (from));
+ ret = asprintf (&buffer, "%.30" DOUBLEST_PRINT_FORMAT,
+ value_as_double (from));
if (ret < 0)
error (_("Error in memory allocation for conversion to decimal float."));