From 640cdfa3ad3ca64c37ecd4e5b89938a476e6b42d Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 1 Jul 2008 08:17:19 +0000 Subject: [PATCH] int -> long --- ext/standard/math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/math.c b/ext/standard/math.c index 837d23ea8d..882419ec43 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -1068,7 +1068,7 @@ PHP_FUNCTION(number_format) { zval *sep1 = NULL, *sep2 = NULL; double num; - int dec = 0; + long dec = 0; char thousand_sep=',', dec_point='.'; char *tmp; -- 2.50.1