comparison src/http/ngx_http_core_module.c @ 5651:b51bd021808b

Fixed missing "static" in declaration of ngx_http_gzip_quantity().
author Valentin Bartenev <vbart@nginx.com>
date Wed, 16 Apr 2014 11:40:38 +0400
parents 5a65b9d8bc2b
children c985d90a8d1f 8e56f649fd0d
comparison
equal deleted inserted replaced
5650:363395795384 5651:b51bd021808b
2366 2366
2367 return NGX_OK; 2367 return NGX_OK;
2368 } 2368 }
2369 2369
2370 2370
2371 ngx_uint_t 2371 static ngx_uint_t
2372 ngx_http_gzip_quantity(u_char *p, u_char *last) 2372 ngx_http_gzip_quantity(u_char *p, u_char *last)
2373 { 2373 {
2374 u_char c; 2374 u_char c;
2375 ngx_uint_t n, q; 2375 ngx_uint_t n, q;
2376 2376