From: Zeev Suraski Date: Wed, 15 Mar 2000 16:18:21 +0000 (+0000) Subject: - Fix warning (I thought I fixed this one before) X-Git-Tag: PHP-4.0-RC1~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f30765e1a0c1a368c2402d89f4c1e0cb235b3a92;p=php - Fix warning (I thought I fixed this one before) --- diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 2f9c0907a3..92e30acadc 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -207,7 +207,7 @@ void init_op(zend_op *op CLS_DC) zend_op *get_next_op(zend_op_array *op_array CLS_DC) { - int next_op_num = op_array->last++; + zend_uint next_op_num = op_array->last++; zend_op *next_op; if (next_op_num >= op_array->size) {