diff options
| author | Nuno Lopes <nlopess@php.net> | 2006-08-14 20:08:18 +0000 |
|---|---|---|
| committer | Nuno Lopes <nlopess@php.net> | 2006-08-14 20:08:18 +0000 |
| commit | ddb4d1fdcc2162edd7432080b117eaae6e24eb87 (patch) | |
| tree | 8ab7c292e00edbe8ed2b9c1514894005e604a272 /ext/zlib/zlib_fopen_wrapper.c | |
| parent | 8657927354c6c03320f7733b5859cd5272712b33 (diff) | |
| download | php-git-ddb4d1fdcc2162edd7432080b117eaae6e24eb87.tar.gz | |
move static declaration to *.c files
mroe static/const keywording
Diffstat (limited to 'ext/zlib/zlib_fopen_wrapper.c')
| -rw-r--r-- | ext/zlib/zlib_fopen_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib_fopen_wrapper.c b/ext/zlib/zlib_fopen_wrapper.c index a7718a9b02..631db81819 100644 --- a/ext/zlib/zlib_fopen_wrapper.c +++ b/ext/zlib/zlib_fopen_wrapper.c @@ -92,7 +92,7 @@ static int php_gziop_flush(php_stream *stream TSRMLS_DC) return gzflush(self->gz_file, Z_SYNC_FLUSH); } -php_stream_ops php_stream_gzio_ops = { +static php_stream_ops php_stream_gzio_ops = { php_gziop_write, php_gziop_read, php_gziop_close, php_gziop_flush, "ZLIB", |
