| commit | 647fd089424fe3f4e01cf1453635a46983828e52 | [log] [tgz] |
|---|---|---|
| author | Roman Arutyunyan <arut@nginx.com> | Thu Jul 02 17:15:32 2015 +0300 |
| committer | Roman Arutyunyan <arut@nginx.com> | Thu Jul 02 17:15:32 2015 +0300 |
| tree | 003f45125cc7543394b7fa9a563313cba0ade774 | |
| parent | f6f7f53778e8b86fec8ae766868e4e69d30e904e [diff] |
Stream: fixed MSVC compilation warning. Thanks to itpp2012.
diff --git a/src/stream/ngx_stream_proxy_module.c b/src/stream/ngx_stream_proxy_module.c index ebbe027..761e5f7 100644 --- a/src/stream/ngx_stream_proxy_module.c +++ b/src/stream/ngx_stream_proxy_module.c
@@ -1063,7 +1063,7 @@ } if (size > (size_t) limit) { - size = limit; + size = (size_t) limit; } }