aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ngx_file.c')
-rw-r--r--src/core/ngx_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_file.c b/src/core/ngx_file.c
index 3db728fb3..dff522674 100644
--- a/src/core/ngx_file.c
+++ b/src/core/ngx_file.c
@@ -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;
}