@@ -156,7 +156,7 @@ typedef struct _zend_fcall_info_cache {
156156
157157#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX2 (name , return_reference , required_num_args , class_name , allow_null , is_tentative_return_type ) \
158158 static const zend_internal_arg_info name[] = { \
159- { (const char*)(zend_uintptr_t )(required_num_args), \
159+ { (const char*)(uintptr_t )(required_num_args), \
160160 ZEND_TYPE_INIT_CLASS_CONST(#class_name, allow_null, _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
161161
162162#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX (name , return_reference , required_num_args , class_name , allow_null ) \
@@ -170,7 +170,7 @@ typedef struct _zend_fcall_info_cache {
170170
171171#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX2 (name , return_reference , required_num_args , type , is_tentative_return_type ) \
172172 static const zend_internal_arg_info name[] = { \
173- { (const char*)(zend_uintptr_t )(required_num_args), ZEND_TYPE_INIT_MASK(type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
173+ { (const char*)(uintptr_t )(required_num_args), ZEND_TYPE_INIT_MASK(type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
174174
175175#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX (name , return_reference , required_num_args , type ) \
176176 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX2(name, return_reference, required_num_args, type, 0)
@@ -180,7 +180,7 @@ typedef struct _zend_fcall_info_cache {
180180
181181#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX2 (name , return_reference , required_num_args , class_name , type , is_tentative_return_type ) \
182182 static const zend_internal_arg_info name[] = { \
183- { (const char*)(zend_uintptr_t )(required_num_args), ZEND_TYPE_INIT_CLASS_CONST_MASK(#class_name, type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
183+ { (const char*)(uintptr_t )(required_num_args), ZEND_TYPE_INIT_CLASS_CONST_MASK(#class_name, type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
184184
185185#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX (name , return_reference , required_num_args , class_name , type ) \
186186 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX2(name, return_reference, required_num_args, class_name, type, 0)
@@ -190,7 +190,7 @@ typedef struct _zend_fcall_info_cache {
190190
191191#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX2 (name , return_reference , required_num_args , type , allow_null , is_tentative_return_type ) \
192192 static const zend_internal_arg_info name[] = { \
193- { (const char*)(zend_uintptr_t )(required_num_args), ZEND_TYPE_INIT_CODE(type, allow_null, _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
193+ { (const char*)(uintptr_t )(required_num_args), ZEND_TYPE_INIT_CODE(type, allow_null, _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
194194
195195#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX (name , return_reference , required_num_args , type , allow_null ) \
196196 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX2(name, return_reference, required_num_args, type, allow_null, 0)
@@ -203,7 +203,7 @@ typedef struct _zend_fcall_info_cache {
203203
204204#define ZEND_BEGIN_ARG_INFO_EX (name , _unused , return_reference , required_num_args ) \
205205 static const zend_internal_arg_info name[] = { \
206- { (const char*)(zend_uintptr_t )(required_num_args), ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(return_reference, 0, 0)), NULL },
206+ { (const char*)(uintptr_t )(required_num_args), ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(return_reference, 0, 0)), NULL },
207207#define ZEND_BEGIN_ARG_INFO (name , _unused ) \
208208 ZEND_BEGIN_ARG_INFO_EX(name, {}, ZEND_RETURN_VALUE, -1)
209209#define ZEND_END_ARG_INFO () };
0 commit comments