summaryrefslogtreecommitdiff
path: root/Zend/zend_long.h
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2014-09-03 16:10:56 +0200
committerNikita Popov <nikic@php.net>2014-09-03 16:52:56 +0200
commit964e1174b43552d4a0610e1c0feb5c4ca77e1ab7 (patch)
tree773939ea13f2cad2d5962e3477e01c47c1019680 /Zend/zend_long.h
parent5c897aa7dab65c1aa5b9197086b3a610f0428fd0 (diff)
downloadphp-git-964e1174b43552d4a0610e1c0feb5c4ca77e1ab7.tar.gz
Fix Z_UL
Diffstat (limited to 'Zend/zend_long.h')
-rw-r--r--Zend/zend_long.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_long.h b/Zend/zend_long.h
index ac270c719b..153b4d24f2 100644
--- a/Zend/zend_long.h
+++ b/Zend/zend_long.h
@@ -52,8 +52,8 @@ typedef int32_t zend_off_t;
# define ZEND_LONG_MAX INT32_MAX
# define ZEND_LONG_MIN INT32_MIN
# define ZEND_ULONG_MAX UINT32_MAX
-# define Z_L(i) i
-# define Z_UL(i) i
+# define Z_L(i) INT32_C(i)
+# define Z_UL(i) UINT32_C(i)
# define SIZEOF_ZEND_LONG 4
#endif