summaryrefslogtreecommitdiff
path: root/ext/standard/math.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-12-23 18:30:32 +0100
committerAnatol Belski <ab@php.net>2015-12-23 18:30:32 +0100
commit0ece97e5a446c7eb6610751fb5ffa0e8d42d6d28 (patch)
tree43719c6d56dfd173d8d102c3176bf179113e3999 /ext/standard/math.c
parent204faa5c3674e017c34aac23d2059fec8d9f0c38 (diff)
downloadphp-git-0ece97e5a446c7eb6610751fb5ffa0e8d42d6d28.tar.gz
fix merge mistake
Diffstat (limited to 'ext/standard/math.c')
-rw-r--r--ext/standard/math.c2
1 files changed, 1 insertions, 1 deletions
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 {