diff options
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; } |