From: Marcus Boerger Date: Mon, 27 Sep 2004 08:46:12 +0000 (+0000) Subject: - Fix warning X-Git-Tag: PRE_NEW_VM_GEN_PATCH~184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e09f929175b22f99cb0c965b9e5c01c9d20de00;p=php - Fix warning --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index c2e8c11aaa..913be149e7 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1936,7 +1936,7 @@ static inline void do_implement_interface(zend_class_entry *ce, zend_class_entry ZEND_API void zend_do_inherit_interfaces(zend_class_entry *ce, zend_class_entry *iface TSRMLS_DC) { /* expects interface to be contained in ce's interface list already */ - int i, ce_num, if_num = iface->num_interfaces; + zend_uint i, ce_num, if_num = iface->num_interfaces; zend_class_entry *entry; if (if_num==0) {