diff options
-rw-r--r-- | Zend/zend_range_check.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_range_check.h b/Zend/zend_range_check.h index 7c13332dba..f47b6525a7 100644 --- a/Zend/zend_range_check.h +++ b/Zend/zend_range_check.h @@ -24,7 +24,7 @@ /* Flag macros for basic range recognition. Notable is that always sizeof(signed) == sizeof(unsigned), so no need to overcomplicate things. */ -#if SIZEOF_INT == SIZEOF_ZEND_LONG +#if SIZEOF_INT < SIZEOF_ZEND_LONG # define ZEND_LONG_CAN_OVFL_INT 1 # define ZEND_LONG_CAN_OVFL_UINT 1 #endif |