summaryrefslogtreecommitdiff
path: root/ext/zlib/zlib_fopen_wrapper.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-08-22 08:34:04 +0000
committerfoobar <sniper@php.net>2001-08-22 08:34:04 +0000
commit5296d29b59b243ac739d7145fd6bd51f1f4c7ea7 (patch)
tree9a0e017a14676523aa89936ddbe57e3cfd17fef9 /ext/zlib/zlib_fopen_wrapper.c
parentbd4150ed806a2aebd8bdbd90c97459681c0b485c (diff)
downloadphp-git-5296d29b59b243ac739d7145fd6bd51f1f4c7ea7.tar.gz
Killed a compile warning.
Diffstat (limited to 'ext/zlib/zlib_fopen_wrapper.c')
-rw-r--r--ext/zlib/zlib_fopen_wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib_fopen_wrapper.c b/ext/zlib/zlib_fopen_wrapper.c
index 5ab4dead5d..acf0a9289d 100644
--- a/ext/zlib/zlib_fopen_wrapper.c
+++ b/ext/zlib/zlib_fopen_wrapper.c
@@ -75,7 +75,7 @@ FILE *zlib_fopen_wrapper(const char *path, char *mode, int options, int *issock,
path++;
- fp = php_fopen_wrapper(path, mode, options|IGNORE_URL, &fissock, &fsocketd, NULL TSRMLS_CC);
+ fp = php_fopen_wrapper((char *) path, mode, options|IGNORE_URL, &fissock, &fsocketd, NULL TSRMLS_CC);
if (!fp) {
free(gc);