diff options
| author | Stanislav Malyshev <stas@php.net> | 2011-05-27 19:24:09 +0000 |
|---|---|---|
| committer | Stanislav Malyshev <stas@php.net> | 2011-05-27 19:24:09 +0000 |
| commit | c16bfe403f4d6ee2aa43ff1b669f440f72446f34 (patch) | |
| tree | 5a1337fd42b02bb0805791afa2ad825c50dcf55c | |
| parent | c2f796c58b0f9e4598a0ec440d4f4483d338aa74 (diff) | |
| download | php-git-c16bfe403f4d6ee2aa43ff1b669f440f72446f34.tar.gz | |
MFH: Fixed comilation on x86_64
| -rw-r--r-- | ext/standard/math.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
