aboutsummaryrefslogtreecommitdiff
path: root/lib/mprintf.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-25 15:34:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-25 15:34:05 +0000
commitf9b2b7940e1498413e341a04fac6989538d465dd (patch)
treea57ca4984b7a2f51e0a4be3955ffdef6fd825cfd /lib/mprintf.c
parent5168b32f862af2698803a0524ab76b501cc8278d (diff)
disable the use of long double, we don't use it
Diffstat (limited to 'lib/mprintf.c')
-rw-r--r--lib/mprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mprintf.c b/lib/mprintf.c
index 50a396963..d56ef0301 100644
--- a/lib/mprintf.c
+++ b/lib/mprintf.c
@@ -931,7 +931,7 @@ static int dprintf_formatf(
/* NOTE NOTE NOTE!! Not all sprintf() implementations returns number
of output characters */
-#if SIZEOF_LONG_DOUBLE
+#if 0 /*SIZEOF_LONG_DOUBLE*/
if (p->flags & FLAGS_LONG)
/* This is for support of the 'long double' type */
(sprintf)(work, formatbuf, p->data.ldnum);