From 420e41ef0972a4c8f91f8200fff04fbc4aee0a4b Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Thu, 13 Jun 2013 16:28:42 +0400 Subject: SPDY: fixed code style, no functional changes. --- src/http/ngx_http_spdy_filter_module.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/http/ngx_http_spdy_filter_module.c b/src/http/ngx_http_spdy_filter_module.c index a49de490a..805177651 100644 --- a/src/http/ngx_http_spdy_filter_module.c +++ b/src/http/ngx_http_spdy_filter_module.c @@ -308,7 +308,8 @@ ngx_http_spdy_header_filter(ngx_http_request_t *r) last = ngx_http_spdy_nv_write_name(last, "status"); if (r->headers_out.status_line.len) { - last = ngx_http_spdy_nv_write_vlen(last, r->headers_out.status_line.len); + last = ngx_http_spdy_nv_write_vlen(last, + r->headers_out.status_line.len); last = ngx_cpymem(last, r->headers_out.status_line.data, r->headers_out.status_line.len); } else { -- cgit