summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2016-05-24 21:54:32 +0300
committerValentin Bartenev <vbart@nginx.com>2016-05-24 21:54:32 +0300
commitb6e423b7c0360cfd4b37431773cc8311129e1e4d (patch)
tree61cc6cc039232be2183666c650563f71e1893fac /src
parent99d2ede93498bd6ef4ab979aa77a75f1ec67c385 (diff)
downloadnginx-b6e423b7c0360cfd4b37431773cc8311129e1e4d.tar.gz
nginx-b6e423b7c0360cfd4b37431773cc8311129e1e4d.tar.bz2
HTTP/2: unbreak build on MSVC.
Diffstat (limited to 'src')
-rw-r--r--src/http/v2/ngx_http_v2.c2
1 files changed, 1 insertions, 1 deletions
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;