summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_opcode.c2
-rw-r--r--Zend/zend_string.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c
index dbe2b5c20b..6ec0e2d1c8 100644
--- a/Zend/zend_opcode.c
+++ b/Zend/zend_opcode.c
@@ -187,7 +187,7 @@ static void _destroy_zend_class_traits_info(zend_class_entry *ce)
}
if (ce->trait_precedences) {
- int j;
+ uint32_t j;
i = 0;
while (ce->trait_precedences[i]) {
diff --git a/Zend/zend_string.c b/Zend/zend_string.c
index c628b9a4c7..b81d5f1a73 100644
--- a/Zend/zend_string.c
+++ b/Zend/zend_string.c
@@ -76,7 +76,7 @@ static void zend_init_interned_strings_ht(HashTable *interned_strings, int perma
ZEND_API void zend_interned_strings_init(void)
{
char s[2];
- int i;
+ unsigned int i;
zend_string *str;
interned_string_request_handler = zend_new_interned_string_request;