Skip to content

Commit 6f77640

Browse files
committed
add forgotten parameter
1 parent c8ec0fa commit 6f77640

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/zlib/php_zlib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ PHP_FUNCTION(ob_gzhandler);
6666

6767
int php_enable_output_compression(int buffer_size TSRMLS_DC);
6868

69-
php_stream *php_stream_gzopen(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC);
69+
php_stream *php_stream_gzopen(char *path, char *mode, int options, char **opened_path, void *wrappercontext STREAMS_DC TSRMLS_DC);
7070
extern php_stream_ops php_stream_gzio_ops;
7171
extern php_stream_wrapper php_stream_gzip_wrapper;
7272

ext/zlib/zlib_fopen_wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ php_stream_ops php_stream_gzio_ops = {
8080
NULL, "ZLIB"
8181
};
8282

83-
php_stream *php_stream_gzopen(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC)
83+
php_stream *php_stream_gzopen(char *path, char *mode, int options, char **opened_path, void *wrappercontext STREAMS_DC TSRMLS_DC)
8484
{
8585
struct php_gz_stream_data_t *self;
8686
php_stream *stream = NULL;

0 commit comments

Comments
 (0)