]> git.kaiwu.me - nginx.git/commitdiff
style fix
authorIgor Sysoev <igor@sysoev.ru>
Wed, 15 Apr 2009 10:57:40 +0000 (10:57 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Wed, 15 Apr 2009 10:57:40 +0000 (10:57 +0000)
src/http/modules/ngx_http_not_modified_filter_module.c

index ac1227a4c49f3341ede56380b57e88d1b6fbed98..5312b3a220b96eb259578d7a43ecd878a56914ab 100644 (file)
@@ -47,8 +47,8 @@ ngx_module_t  ngx_http_not_modified_filter_module = {
 static ngx_http_output_header_filter_pt  ngx_http_next_header_filter;
 
 
-static
-ngx_int_t ngx_http_not_modified_header_filter(ngx_http_request_t *r)
+static ngx_int_t
+ngx_http_not_modified_header_filter(ngx_http_request_t *r)
 {
     time_t                     ims;
     ngx_http_core_loc_conf_t  *clcf;
@@ -92,8 +92,8 @@ ngx_int_t ngx_http_not_modified_header_filter(ngx_http_request_t *r)
 }
 
 
-static
-ngx_int_t ngx_http_not_modified_filter_init(ngx_conf_t *cf)
+static ngx_int_t
+ngx_http_not_modified_filter_init(ngx_conf_t *cf)
 {
     ngx_http_next_header_filter = ngx_http_top_header_filter;
     ngx_http_top_header_filter = ngx_http_not_modified_header_filter;