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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user