From 0ece97e5a446c7eb6610751fb5ffa0e8d42d6d28 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Wed, 23 Dec 2015 18:30:32 +0100 Subject: [PATCH] fix merge mistake --- ext/standard/math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.40.0