1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00

MFB: Fixed compiler warning.

This commit is contained in:
Ilia Alshanetsky
2006-07-24 03:59:03 +00:00
parent bc6e3f53e3
commit 1aa26d8165
+1 -1
View File
@@ -798,7 +798,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);
}
}
/* }}} */