aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_output_chain.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-09-08 09:33:37 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-09-08 09:33:37 +0000
commita19c7b5ad60700c1c83f84d01661a39145fb8d3c (patch)
treeac2ce7033838104eb2e79cd3391d43bce7c2c46f /src/core/ngx_output_chain.c
parent196f9525514bff0ea34ac847e393ea37bb0e6dee (diff)
downloadnginx-a19c7b5ad60700c1c83f84d01661a39145fb8d3c.tar.gz
nginx-a19c7b5ad60700c1c83f84d01661a39145fb8d3c.zip
fix building on 64-bit platforms, introduced in r2232
Diffstat (limited to 'src/core/ngx_output_chain.c')
-rw-r--r--src/core/ngx_output_chain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c
index e0f615e5b..3d5ae1db5 100644
--- a/src/core/ngx_output_chain.c
+++ b/src/core/ngx_output_chain.c
@@ -331,7 +331,7 @@ ngx_output_chain_align_file_buf(ngx_output_chain_ctx_t *ctx, off_t bsize)
if (size == 0) {
- if (bsize >= ctx->bufs.size) {
+ if (bsize >= (off_t) ctx->bufs.size) {
return NGX_DECLINED;
}
@@ -340,7 +340,7 @@ ngx_output_chain_align_file_buf(ngx_output_chain_ctx_t *ctx, off_t bsize)
} else {
size = 512 - size;
- if (size > bsize) {
+ if ((off_t) size > bsize) {
size = (size_t) bsize;
}
}