From: Nikita Popov Date: Wed, 3 Sep 2014 14:10:56 +0000 (+0200) Subject: Fix Z_UL X-Git-Tag: PRE_PHP7_REMOVALS~129 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=964e1174b43552d4a0610e1c0feb5c4ca77e1ab7;p=php Fix Z_UL --- 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