diff options
author | Valentin Bartenev <vbart@nginx.com> | 2013-06-13 16:28:42 +0400 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2013-06-13 16:28:42 +0400 |
commit | 420e41ef0972a4c8f91f8200fff04fbc4aee0a4b (patch) | |
tree | 97cfabbad6a53b9d4fc4786cda952e9d8338fbc4 | |
parent | aac7f7f4648dd5b1ada39931f4dc88e0645ce7c1 (diff) | |
download | nginx-420e41ef0972a4c8f91f8200fff04fbc4aee0a4b.tar.gz nginx-420e41ef0972a4c8f91f8200fff04fbc4aee0a4b.zip |
SPDY: fixed code style, no functional changes.
-rw-r--r-- | src/http/ngx_http_spdy_filter_module.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 { |