]> granicus.if.org Git - php/commitdiff
fix merge mistake
authorAnatol Belski <ab@php.net>
Wed, 23 Dec 2015 17:30:32 +0000 (18:30 +0100)
committerAnatol Belski <ab@php.net>
Wed, 23 Dec 2015 17:30:32 +0000 (18:30 +0100)
ext/standard/math.c

index 6203626a55ad5d7428f163d1f7bc311622caf2c1..73face4a9bf66187886d154ae806a28950ffe098 100644 (file)
@@ -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 {