diff options
author | Valentin Bartenev <vbart@nginx.com> | 2014-11-19 21:46:01 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2014-11-19 21:46:01 +0300 |
commit | 96a62f139603573c9bcf0399d9e261c8a63ca5ce (patch) | |
tree | 43e9eb565bf9e1ea8267e770358737cad1f1004f /src | |
parent | 1276d8483e8ae08d518ae0fe9c10fa9e90fe54fe (diff) | |
download | nginx-96a62f139603573c9bcf0399d9e261c8a63ca5ce.tar.gz nginx-96a62f139603573c9bcf0399d9e261c8a63ca5ce.zip |
Style.
Diffstat (limited to 'src')
-rw-r--r-- | src/os/unix/ngx_darwin_sendfile_chain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/unix/ngx_darwin_sendfile_chain.c b/src/os/unix/ngx_darwin_sendfile_chain.c index 43f191326..f01651a11 100644 --- a/src/os/unix/ngx_darwin_sendfile_chain.c +++ b/src/os/unix/ngx_darwin_sendfile_chain.c @@ -104,8 +104,8 @@ ngx_darwin_sendfile_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit) * create the trailer iovec and coalesce the neighbouring bufs */ - cl = ngx_output_chain_to_iovec(&trailer, cl, limit - send, c->log); - + cl = ngx_output_chain_to_iovec(&trailer, cl, limit - send, + c->log); if (cl == NGX_CHAIN_ERROR) { return NGX_CHAIN_ERROR; } |