diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-03-11 17:31:59 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-03-11 17:31:59 +0300 |
commit | 22de5fcddfacd8d241ae2926125e0151b9e6e651 (patch) | |
tree | 5bb98bf2ed915b3ac59b32737f827c7ff6812724 /src/nxt_http_parse.c | |
parent | dccb4cf3548724fbec993c5bb83edf928d0b23bf (diff) | |
download | unit-22de5fcddfacd8d241ae2926125e0151b9e6e651.tar.gz unit-22de5fcddfacd8d241ae2926125e0151b9e6e651.tar.bz2 |
Style.
Diffstat (limited to 'src/nxt_http_parse.c')
-rw-r--r-- | src/nxt_http_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_http_parse.c b/src/nxt_http_parse.c index 34eaaaf9..64e4bf35 100644 --- a/src/nxt_http_parse.c +++ b/src/nxt_http_parse.c @@ -119,7 +119,7 @@ nxt_http_parse_request_init(nxt_http_request_parse_t *rp, nxt_mp_t *mp) rp->mem_pool = mp; rp->fields = nxt_list_create(mp, 8, sizeof(nxt_http_field_t)); - if (nxt_slow_path(rp->fields == NULL)){ + if (nxt_slow_path(rp->fields == NULL)) { return NXT_ERROR; } |