From 689e4e2d8a2fd0d55acc62c746fdcc302f851995 Mon Sep 17 00:00:00 2001 From: Thiago Jung Bauermann Date: Wed, 9 Jan 2008 19:27:15 +0000 Subject: * 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. --- gdb/dfp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/dfp.c') diff --git a/gdb/dfp.c b/gdb/dfp.c index bf82114..e184ecd 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.")); -- cgit v1.1