diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-31 23:32:24 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-31 23:32:24 +0000 |
commit | 15cb7ca02194742fcbd5609a8f177966a1c33b5d (patch) | |
tree | 11fbc9bb8d40c46a9a1c196f1346985465776d48 /ext/standard/http_fopen_wrapper.c | |
parent | 4b00c6b697dabbaa89b199befcb95d187837db6c (diff) | |
download | php-git-15cb7ca02194742fcbd5609a8f177966a1c33b5d.tar.gz |
Fix some warnings
Diffstat (limited to 'ext/standard/http_fopen_wrapper.c')
-rw-r--r-- | ext/standard/http_fopen_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c index 745e57ff00..253a75f413 100644 --- a/ext/standard/http_fopen_wrapper.c +++ b/ext/standard/http_fopen_wrapper.c @@ -70,7 +70,7 @@ /* {{{ php_fopen_url_wrap_http */ -FILE *php_fopen_url_wrap_http(char *path, char *mode, int options, int *issock, int *socketd, char **opened_path TSRMLS_DC) +FILE *php_fopen_url_wrap_http(const char *path, char *mode, int options, int *issock, int *socketd, char **opened_path TSRMLS_DC) { FILE *fp=NULL; php_url *resource=NULL; |