You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by du...@apache.org on 2007/08/16 12:57:11 UTC

svn commit: r566655 - /webservices/axis2/trunk/c/src/core/transport/http/server/apache2/apache2_stream.c

Author: dushshantha
Date: Thu Aug 16 03:57:10 2007
New Revision: 566655

URL: http://svn.apache.org/viewvc?view=rev&rev=566655
Log:
fixed windows build break

Modified:
    webservices/axis2/trunk/c/src/core/transport/http/server/apache2/apache2_stream.c

Modified: webservices/axis2/trunk/c/src/core/transport/http/server/apache2/apache2_stream.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/server/apache2/apache2_stream.c?view=diff&rev=566655&r1=566654&r2=566655
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/server/apache2/apache2_stream.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/server/apache2/apache2_stream.c Thu Aug 16 03:57:10 2007
@@ -105,7 +105,7 @@
     
     while ( count - len > 0 )
     {
-        read = ap_get_client_block(stream_impl->request, buffer + len, count - len);
+        read = ap_get_client_block(stream_impl->request, (size_t)buffer + len, count - len);
         if (read > 0)
         {
             len += read;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org