We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 709e4e4 commit c172927Copy full SHA for c172927
Zend/zend_operators.c
@@ -3101,7 +3101,7 @@ ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow(double d)
3101
if (dmod < 0) {
3102
/* we're going to make this number positive; call ceil()
3103
* to simulate rounding towards 0 of the negative number */
3104
- dmod = ceil(dmod);// + two_pow_32;
+ dmod = ceil(dmod) + two_pow_32;
3105
}
3106
return (zend_long)(zend_ulong)dmod;
3107
0 commit comments