Skip to content

Commit 175b1a9

Browse files
author
Sjoerd Langkemper
committed
Use zend_long consistently for filter count
1 parent 7cd388b commit 175b1a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main/streams/filter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ PHPAPI zend_long php_stream_filter_count(php_stream_filter_chain *chain) {
453453
return 0;
454454
}
455455

456-
int count = 1;
456+
zend_long count = 1;
457457
php_stream_filter *node = chain->head;
458458
while (node != chain->tail) {
459459
count += 1;

0 commit comments

Comments
 (0)