Skip to content

Commit 47c9836

Browse files
Better variable name
1 parent 87756d7 commit 47c9836

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main/output.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -979,8 +979,8 @@ static inline php_output_handler_status_t php_output_handler_op(php_output_handl
979979
int handler_count = php_output_get_level();
980980
if (handler_count) {
981981
php_output_handler **handlers = (php_output_handler **) zend_stack_base(&OG(handlers));
982-
for (int iii = 0; iii < handler_count; ++iii) {
983-
php_output_handler *curr_handler = handlers[iii];
982+
for (int handler_num = 0; handler_num < handler_count; ++handler_num) {
983+
php_output_handler *curr_handler = handlers[handler_num];
984984
if (curr_handler == handler) {
985985
handler->flags &= (~PHP_OUTPUT_HANDLER_DISABLED);
986986
still_have_handler = true;

0 commit comments

Comments
 (0)