From: Stanislav Malyshev Date: Fri, 27 May 2011 19:24:09 +0000 (+0000) Subject: MFH: Fixed comilation on x86_64 X-Git-Tag: php-5.4.0alpha1~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c16bfe403f4d6ee2aa43ff1b669f440f72446f34;p=php MFH: 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) {