fix building on 64-bit platforms, introduced in r3025

This commit is contained in:
Igor Sysoev 2009-08-13 13:48:41 +00:00
parent c287a9811e
commit aa4bba5298

View File

@ -693,7 +693,7 @@ ngx_copy_file(u_char *from, u_char *to, ngx_copy_file_t *cf)
len = cf->buf_size ? cf->buf_size : 65536; len = cf->buf_size ? cf->buf_size : 65536;
if (len > size) { if ((off_t) len > size) {
len = (size_t) size; len = (size_t) size;
} }
@ -713,7 +713,7 @@ ngx_copy_file(u_char *from, u_char *to, ngx_copy_file_t *cf)
while (size > 0) { while (size > 0) {
if (len > size) { if ((off_t) len > size) {
len = (size_t) size; len = (size_t) size;
} }