From: Anatol Belski Date: Wed, 23 Dec 2015 17:30:32 +0000 (+0100) Subject: fix merge mistake X-Git-Tag: php-7.0.3RC1~108^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ece97e5a446c7eb6610751fb5ffa0e8d42d6d28;p=php fix merge mistake --- diff --git a/ext/standard/math.c b/ext/standard/math.c index 6203626a55..73face4a9b 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -390,7 +390,7 @@ PHP_FUNCTION(round) } if (ZEND_NUM_ARGS() >= 2) { -#if SIZEOF_LONG > SIZEOF_INT +#if SIZEOF_ZEND_LONG > SIZEOF_INT if (precision >= 0) { places = precision > INT_MAX ? INT_MAX : (int)precision; } else {