diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-11-24 12:17:51 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-11-24 12:17:51 +0000 |
commit | 682164ae992c50fc075fad294de040fb60ff6529 (patch) | |
tree | b3733e72b0202caa0955bc5afcdcf0c7df410659 | |
parent | d9c94663c1abed95074b5004fe75aef0ee756bab (diff) | |
download | php-git-682164ae992c50fc075fad294de040fb60ff6529.tar.gz |
fix windows build warning
-rw-r--r-- | phpdbg_info.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/phpdbg_info.c b/phpdbg_info.c index 724b30cce0..d665f92d7d 100644 --- a/phpdbg_info.c +++ b/phpdbg_info.c @@ -151,8 +151,7 @@ PHPDBG_INFO(literal) /* {{{ */ { if ((EG(in_execution) && EG(active_op_array)) || PHPDBG_G(ops)) { zend_op_array *ops = EG(active_op_array) ? EG(active_op_array) : PHPDBG_G(ops); - unsigned int literal = 0; - int count = ops->last_literal-1; + int literal = 0, count = ops->last_literal-1; if (ops->function_name) { if (ops->scope) { |