fix building on 64-bit platforms, introduced in r3025
This commit is contained in:
parent
1566757897
commit
66cdc9c036
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
if (len > size) {
|
||||
if ((off_t) len > 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) {
|
||||
|
||||
if (len > size) {
|
||||
if ((off_t) len > size) {
|
||||
len = (size_t) size;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue