comparison src/os/unix/ngx_freebsd_sendfile_chain.c @ 1354:f69d1aab6a0f

make 64-bit ngx_int_t on 64-bit platforms
author Igor Sysoev <igor@sysoev.ru>
date Sun, 29 Jul 2007 18:24:53 +0000
parents df449f4a8032
children 6f6d7ea70805
comparison
equal deleted inserted replaced
1353:7443fbe0b013 1354:f69d1aab6a0f
70 70
71 #endif 71 #endif
72 72
73 /* the maximum limit size is the maximum size_t value - the page size */ 73 /* the maximum limit size is the maximum size_t value - the page size */
74 74
75 if (limit == 0 || limit > NGX_MAX_SIZE_T_VALUE - ngx_pagesize) { 75 if (limit == 0 || limit > (off_t) (NGX_MAX_SIZE_T_VALUE - ngx_pagesize)) {
76 limit = NGX_MAX_SIZE_T_VALUE - ngx_pagesize; 76 limit = NGX_MAX_SIZE_T_VALUE - ngx_pagesize;
77 } 77 }
78 78
79 send = 0; 79 send = 0;
80 eagain = 0; 80 eagain = 0;