From: Dmitry Stogov Date: Tue, 24 May 2011 08:27:36 +0000 (+0000) Subject: Fixed comilation on x86_64 X-Git-Tag: php-5.5.0alpha1~2050 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7da89df2671b02529f0e485e0e0105312c057904;p=php Fixed comilation on x86_64 --- diff --git a/ext/standard/math.c b/ext/standard/math.c index 135b87eb56..a4df5a5aa6 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -608,7 +608,7 @@ PHP_FUNCTION(pow) /* calculate pow(long,long) in O(log exp) operations, bail if overflow */ while (i >= 1) { - int overflow; + long overflow; double dval = 0.0; if (i % 2) {