You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
440 B

  1. --- a/Zend/zend_alloc.h
  2. +++ b/Zend/zend_alloc.h
  3. @@ -27,12 +27,12 @@
  4. #include "zend.h"
  5. #ifndef ZEND_MM_ALIGNMENT
  6. -# define ZEND_MM_ALIGNMENT ((size_t) 8)
  7. +# define ZEND_MM_ALIGNMENT (8)
  8. # define ZEND_MM_ALIGNMENT_LOG2 Z_L(3)
  9. #elif ZEND_MM_ALIGNMENT < 4
  10. # undef ZEND_MM_ALIGNMENT
  11. # undef ZEND_MM_ALIGNMENT_LOG2
  12. -# define ZEND_MM_ALIGNMENT ((size_t) 4)
  13. +# define ZEND_MM_ALIGNMENT (4)
  14. # define ZEND_MM_ALIGNMENT_LOG2 Z_L(2)
  15. #endif