diff options
Diffstat (limited to 'Zend/zend_long.h')
| -rw-r--r-- | Zend/zend_long.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_long.h b/Zend/zend_long.h index 9ac7c8e4b8..a5ac2157f8 100644 --- a/Zend/zend_long.h +++ b/Zend/zend_long.h @@ -40,7 +40,7 @@ typedef __int64 zend_off_t; # define ZEND_LONG_MAX _I64_MAX # define ZEND_LONG_MIN _I64_MIN # define ZEND_ULONG_MAX _UI64_MAX -# define Z_I(i) i##i64 +# define Z_L(i) i##i64 # define Z_UL(i) i##Ui64 # else # error Cant enable 64 bit integers on non 64 bit platform @@ -53,7 +53,7 @@ typedef off_t zend_off_t; # define ZEND_LONG_MAX INT64_MAX # define ZEND_LONG_MIN INT64_MIN # define ZEND_ULONG_MAX UINT64_MAX -# define Z_I(i) i##LL +# define Z_L(i) i##LL # define Z_UL(i) i##ULL # else # error Cant enable 64 bit integers on non 64 bit platform @@ -67,7 +67,7 @@ typedef long zend_off_t; # define ZEND_LONG_MAX LONG_MAX # define ZEND_LONG_MIN LONG_MIN # define ZEND_ULONG_MAX ULONG_MAX -# define Z_I(i) i##L +# define Z_L(i) i##L # define Z_UL(i) i##UL # define SIZEOF_ZEND_LONG SIZEOF_LONG #endif |
