aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2015-09-22 17:09:50 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2015-09-22 17:09:50 +0300
commit49b17956f964d2cc244dc7bcdb9dea40ffde6ffc (patch)
tree6c05ec73d199a5ded4e2cc65079003c9d4e45488 /src
parenta0d7df93a0188f79733351a7e7e8168b6fdf698e (diff)
downloadnginx-49b17956f964d2cc244dc7bcdb9dea40ffde6ffc.tar.gz
nginx-49b17956f964d2cc244dc7bcdb9dea40ffde6ffc.zip
Style.
Diffstat (limited to 'src')
-rw-r--r--src/http/v2/ngx_http_v2_filter_module.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/v2/ngx_http_v2_filter_module.c b/src/http/v2/ngx_http_v2_filter_module.c
index c66a03193..17cfcd8cc 100644
--- a/src/http/v2/ngx_http_v2_filter_module.c
+++ b/src/http/v2/ngx_http_v2_filter_module.c
@@ -945,7 +945,8 @@ ngx_http_v2_filter_get_data_frame(ngx_http_v2_stream_t *stream,
buf = cl->buf;
if (!buf->start) {
- buf->start = ngx_palloc(stream->request->pool, NGX_HTTP_V2_FRAME_HEADER_SIZE);
+ buf->start = ngx_palloc(stream->request->pool,
+ NGX_HTTP_V2_FRAME_HEADER_SIZE);
if (buf->start == NULL) {
return NULL;
}