mirror of
https://github.com/nginx/nginx.git
synced 2024-12-02 11:49:01 +08:00
Stream: fixed MSVC compilation warning.
Thanks to itpp2012.
This commit is contained in:
parent
f81ae4e392
commit
035732696d
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user