From: Antony Dovgal Date: Tue, 1 Jul 2008 08:17:19 +0000 (+0000) Subject: int -> long X-Git-Tag: BEFORE_HEAD_NS_CHANGE~1432 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=640cdfa3ad3ca64c37ecd4e5b89938a476e6b42d;p=php int -> long --- 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;