From 7c80fc1d9edcda28ee87f2db3b9544af0a510f32 Mon Sep 17 00:00:00 2001 From: "Frank M. Kromann" Date: Tue, 7 May 2002 17:51:03 +0000 Subject: [PATCH] Fixing win32 build. --- main/spprintf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/spprintf.c b/main/spprintf.c index 91b3eca9e3..1bda78d1c6 100644 --- a/main/spprintf.c +++ b/main/spprintf.c @@ -486,7 +486,8 @@ static int xbuf_format_converter(register xbuffy * xbuf, const char *fmt, va_lis /* * * We use &num_buf[ 1 ], so that we have room for the sign */ - s = ap_php_gcvt(va_arg(ap, double), precision, &num_buf[1]); + s = ap_php_gcvt(va_arg(ap, double), precision, &num_buf[1], + alternate_form); if (*s == '-') prefix_char = *s++; else if (print_sign) -- 2.50.1