Stream: fixed MSVC compilation warning.

Thanks to itpp2012.
This commit is contained in:
Roman Arutyunyan 2015-07-02 17:15:32 +03:00
parent f81ae4e392
commit 035732696d

View File

@ -1063,7 +1063,7 @@ ngx_stream_proxy_process(ngx_stream_session_t *s, ngx_uint_t from_upstream,
} }
if (size > (size_t) limit) { if (size > (size_t) limit) {
size = limit; size = (size_t) limit;
} }
} }