Hello,
> On 29 Jun 2015, at 16:05, itpp2012 <nginx-forum at nginx.us> wrote:
>
> (1066) : warning C4244: '=' : conversion from 'off_t' to 'size_t', possible
> loss of data
>
> diff line 1066:
> if (size > (size_t) limit) {
> - size = limit;
> + size = (size_t) limit;
> }
>
What compiler do you have?
--
Roman Arutyunyan