Skip to content

Commit

Permalink
Fixed compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Alshanetsky committed Jul 24, 2006
1 parent 1a8d655 commit 60b2f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/filter/filter.c
Expand Up @@ -790,7 +790,7 @@ PHP_FUNCTION(input_filters_list)

array_init(return_value);
for (i = 0; i < size; ++i) {
add_next_index_string(return_value, filter_list[i].name, 1);
add_next_index_string(return_value, (char *)filter_list[i].name, 1);
}
}
/* }}} */
Expand Down

0 comments on commit 60b2f49

Please sign in to comment.