You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2005/08/18 22:49:41 UTC

svn commit: r233376 - /apr/apr/trunk/file_io/unix/fullrw.c

Author: jorton
Date: Thu Aug 18 13:49:38 2005
New Revision: 233376

URL: http://svn.apache.org/viewcvs?rev=233376&view=rev
Log:
* file_io/unix/fullrw.c (apr_file_writev_full): Fix signed-vs-unsigned
comparison.

Modified:
    apr/apr/trunk/file_io/unix/fullrw.c

Modified: apr/apr/trunk/file_io/unix/fullrw.c
URL: http://svn.apache.org/viewcvs/apr/apr/trunk/file_io/unix/fullrw.c?rev=233376&r1=233375&r2=233376&view=diff
==============================================================================
--- apr/apr/trunk/file_io/unix/fullrw.c (original)
+++ apr/apr/trunk/file_io/unix/fullrw.c Thu Aug 18 13:49:38 2005
@@ -68,7 +68,7 @@
                                                apr_size_t *bytes_written)
 {
     apr_status_t rv = APR_SUCCESS;
-    int i;
+    apr_size_t i;
     apr_size_t amt = 0;
     apr_size_t total = 0;