summaryrefslogtreecommitdiff
path: root/Zend/zend_inheritance.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-10-27 11:50:49 +0100
committerAnatol Belski <ab@php.net>2014-10-27 16:38:38 +0100
commit8fdaeef8e8df79562662c19ced80b0209cdcc110 (patch)
treec18294823e07220cd247712da7bc2dfcc8271bd3 /Zend/zend_inheritance.c
parentbaba4254ce481b779beab6dd75cbe6a9612b3243 (diff)
downloadphp-git-8fdaeef8e8df79562662c19ced80b0209cdcc110.tar.gz
fix datatype mismatches
Diffstat (limited to 'Zend/zend_inheritance.c')
-rw-r--r--Zend/zend_inheritance.c2
1 files changed, 1 insertions, 1 deletions
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;