summaryrefslogtreecommitdiff
path: root/ext/zlib/zlib_fopen_wrapper.c
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2006-08-14 20:08:18 +0000
committerNuno Lopes <nlopess@php.net>2006-08-14 20:08:18 +0000
commitddb4d1fdcc2162edd7432080b117eaae6e24eb87 (patch)
tree8ab7c292e00edbe8ed2b9c1514894005e604a272 /ext/zlib/zlib_fopen_wrapper.c
parent8657927354c6c03320f7733b5859cd5272712b33 (diff)
downloadphp-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.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 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",