change int to size_t
diff --git a/src/http/modules/ngx_http_gzip_filter_module.c b/src/http/modules/ngx_http_gzip_filter_module.c
index 54e2cff..e3a1181 100644
--- a/src/http/modules/ngx_http_gzip_filter_module.c
+++ b/src/http/modules/ngx_http_gzip_filter_module.c
@@ -870,9 +870,9 @@
static char *
ngx_http_gzip_window(ngx_conf_t *cf, void *post, void *data)
{
- int *np = data;
+ size_t *np = data;
- int wbits, wsize;
+ size_t wbits, wsize;
wbits = 15;
@@ -894,9 +894,9 @@
static char *
ngx_http_gzip_hash(ngx_conf_t *cf, void *post, void *data)
{
- int *np = data;
+ size_t *np = data;
- int memlevel, hsize;
+ size_t memlevel, hsize;
memlevel = 9;