diff options
author | Valentin Bartenev <vbart@nginx.com> | 2014-04-16 11:40:38 +0400 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2014-04-16 11:40:38 +0400 |
commit | 013449be01f1cd18a1b0e926f17ee99a7095cf67 (patch) | |
tree | 1c6910ac4740696d8c1851ee1829ac9c3e273920 | |
parent | 7da40e6a99fb247d5d97af25cae0c50ed5e55629 (diff) | |
download | nginx-013449be01f1cd18a1b0e926f17ee99a7095cf67.tar.gz nginx-013449be01f1cd18a1b0e926f17ee99a7095cf67.zip |
Fixed missing "static" in declaration of ngx_http_gzip_quantity().
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index bfaa90e76..4484a5ed4 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -2368,7 +2368,7 @@ equal: } -ngx_uint_t +static ngx_uint_t ngx_http_gzip_quantity(u_char *p, u_char *last) { u_char c; |