From 3be6cc9b2f85724c37d5cf5e9f71bbded656b9cd Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Thu, 23 May 2013 15:47:58 +0400 Subject: Use "void" for functions with empty parameter list. --- src/http/ngx_http_spdy.c | 2 +- src/http/ngx_http_spdy.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/http') diff --git a/src/http/ngx_http_spdy.c b/src/http/ngx_http_spdy.c index 3febc23e9..acadaf232 100644 --- a/src/http/ngx_http_spdy.c +++ b/src/http/ngx_http_spdy.c @@ -2176,7 +2176,7 @@ ngx_http_spdy_handle_request_header(ngx_http_request_t *r) void -ngx_http_spdy_request_headers_init() +ngx_http_spdy_request_headers_init(void) { ngx_uint_t i; ngx_http_spdy_request_header_t *h; diff --git a/src/http/ngx_http_spdy.h b/src/http/ngx_http_spdy.h index 4294e3d50..63014066d 100644 --- a/src/http/ngx_http_spdy.h +++ b/src/http/ngx_http_spdy.h @@ -186,7 +186,7 @@ ngx_http_spdy_queue_blocked_frame(ngx_http_spdy_connection_t *sc, void ngx_http_spdy_init(ngx_event_t *rev); -void ngx_http_spdy_request_headers_init(); +void ngx_http_spdy_request_headers_init(void); ngx_int_t ngx_http_spdy_read_request_body(ngx_http_request_t *r, ngx_http_client_body_handler_pt post_handler); -- cgit