# HG changeset patch # User Roman Arutyunyan # Date 1435846532 -10800 # Node ID fdfdcad628757460c708e052293f4f51f799b11e # Parent 6345822f0abb70807f635989b6c2df7852a55bd9 Stream: fixed MSVC compilation warning. Thanks to itpp2012. diff -r 6345822f0abb -r fdfdcad62875 src/stream/ngx_stream_proxy_module.c --- a/src/stream/ngx_stream_proxy_module.c Thu Jun 25 12:36:52 2015 +0300 +++ b/src/stream/ngx_stream_proxy_module.c Thu Jul 02 17:15:32 2015 +0300 @@ -1063,7 +1063,7 @@ } if (size > (size_t) limit) { - size = limit; + size = (size_t) limit; } }