From: Anatol Belski Date: Mon, 27 Oct 2014 10:50:49 +0000 (+0100) Subject: fix datatype mismatches X-Git-Tag: PRE_PHP7_REMOVALS~87^2~95 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8fdaeef8e8df79562662c19ced80b0209cdcc110;p=php fix datatype mismatches --- diff --git a/Zend/zend_inheritance.c b/Zend/zend_inheritance.c index f240ed7159..c6f8c6ae15 100644 --- a/Zend/zend_inheritance.c +++ b/Zend/zend_inheritance.c @@ -372,7 +372,7 @@ static zend_string *zend_get_function_declaration(zend_function *fptr TSRMLS_DC) for (i = 0; i < fptr->common.num_args;) { if (arg_info->class_name) { const char *class_name; - uint32_t class_name_len; + size_t class_name_len; if (!strcasecmp(arg_info->class_name, "self") && fptr->common.scope) { class_name = fptr->common.scope->name->val; class_name_len = fptr->common.scope->name->len;