1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 15:12:39 +02:00

MFH: Fixed comilation on x86_64

This commit is contained in:
Stanislav Malyshev
2011-05-27 19:24:09 +00:00
parent c2f796c58b
commit c16bfe403f

View File

@@ -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) {