1
0
mirror of https://github.com/php/php-src.git synced 2026-04-10 01:23:53 +02:00

Kill compiler warning.

This commit is contained in:
Frank M. Kromann
2000-10-27 16:16:55 +00:00
parent ea7534a848
commit 02537bd2f2

View File

@@ -440,7 +440,7 @@ static FILE *php_fopen_url_wrapper(const char *path, char *mode, int options, in
if(protocol) {
php_fopen_url_wrapper_t *wrapper=NULL;
if(FAILURE==zend_hash_find(&fopen_url_wrappers_hash, protocol, n, (void **)&wrapper)) {
if(FAILURE==zend_hash_find(&fopen_url_wrappers_hash, (char *)protocol, n, (void **)&wrapper)) {
wrapper=NULL;
protocol=NULL;
}