From: Valentin Bartenev Date: Tue, 24 May 2016 18:54:32 +0000 (+0300) Subject: HTTP/2: unbreak build on MSVC. X-Git-Tag: release-1.10.2~20 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=a650907c17145c5fbbb3167a224de746f9b65233;p=nginx.git HTTP/2: unbreak build on MSVC. --- diff --git a/src/http/v2/ngx_http_v2.c b/src/http/v2/ngx_http_v2.c index cd0243cfc..208f0f325 100644 --- a/src/http/v2/ngx_http_v2.c +++ b/src/http/v2/ngx_http_v2.c @@ -3544,7 +3544,7 @@ ngx_http_v2_read_request_body(ngx_http_request_t *r, } if (r->request_body_no_buffering) { - size = len - h2scf->preread_size; + size = (size_t) len - h2scf->preread_size; } else { stream->no_flow_control = 1;