1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00

- silent compiler warning

This commit is contained in:
Pierre Joye
2009-04-20 08:28:44 +00:00
parent 555208c581
commit be093af4fa
+1 -1
View File
@@ -219,7 +219,7 @@ PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show
if (ret != SUCCESS) {
php_stream_close(newstream);
} else {
int retcode = php_stream_cast(newstream, castas | flags, ret, show_err);
int retcode = php_stream_cast(newstream, castas | flags, (void**)ret, show_err);
if (retcode == SUCCESS)
rewind(*(FILE**)ret);