mirror of
https://github.com/nginx/nginx.git
synced 2026-07-30 08:08:24 -05:00
Stream: fixed MSVC compilation warning.
Thanks to itpp2012.
This commit is contained in:
@@ -1063,7 +1063,7 @@ ngx_stream_proxy_process(ngx_stream_session_t *s, ngx_uint_t from_upstream,
|
||||
}
|
||||
|
||||
if (size > (size_t) limit) {
|
||||
size = limit;
|
||||
size = (size_t) limit;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user