You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2007/08/23 10:13:45 UTC

svn commit: r568881 - /apr/apr/trunk/include/apr_want.h

Author: wrowe
Date: Thu Aug 23 01:13:44 2007
New Revision: 568881

URL: http://svn.apache.org/viewvc?rev=568881&view=rev
Log:
We expect iov lengths to match up with a size_t, not ssize_t.

Modified:
    apr/apr/trunk/include/apr_want.h

Modified: apr/apr/trunk/include/apr_want.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_want.h?rev=568881&r1=568880&r2=568881&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_want.h (original)
+++ apr/apr/trunk/include/apr_want.h Thu Aug 23 01:13:44 2007
@@ -92,7 +92,7 @@
 struct iovec
 {
     char *iov_base;
-    int iov_len;
+    size_t iov_len;
 };
 
 #endif