diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-08-12 09:00:56 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-08-12 09:00:56 +0000 |
commit | 242d1de5d0675e4a71fbae600a677b55e205ac4f (patch) | |
tree | 6aa5cecdde131c17d8aa6b65a8608b92c5f6245b /src | |
parent | 845f6d553a48a74f12e9b80b7824d59da257bc82 (diff) | |
download | nginx-242d1de5d0675e4a71fbae600a677b55e205ac4f.tar.gz nginx-242d1de5d0675e4a71fbae600a677b55e205ac4f.zip |
style fix
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index dfe6eff70..26e833f40 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -932,7 +932,8 @@ ngx_http_add_address(ngx_conf_t *cf, ngx_http_conf_in_port_t *in_port, if (in_port->addrs.elts == NULL) { if (ngx_array_init(&in_port->addrs, cf->temp_pool, 4, - sizeof(ngx_http_conf_in_addr_t)) != NGX_OK) + sizeof(ngx_http_conf_in_addr_t)) + != NGX_OK) { return NGX_ERROR; } @@ -981,7 +982,8 @@ ngx_http_add_names(ngx_conf_t *cf, ngx_http_conf_in_addr_t *in_addr, if (in_addr->names.elts == NULL) { if (ngx_array_init(&in_addr->names, cf->temp_pool, 4, - sizeof(ngx_http_server_name_t)) != NGX_OK) + sizeof(ngx_http_server_name_t)) + != NGX_OK) { return NGX_ERROR; } |