From c16bfe403f4d6ee2aa43ff1b669f440f72446f34 Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Fri, 27 May 2011 19:24:09 +0000 Subject: [PATCH] MFH: Fixed comilation on x86_64 --- 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 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) { -- 2.50.1