summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-08-23 08:13:44 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-08-23 08:13:44 +0000
commit9799653bf436121fc0f624374a18543a2303fd21 (patch)
tree0e4c50ea46d9469a1ea7ddaacd929fea9344129a
parent369f795d637f8202be9d9ebe2acbe73b887fab29 (diff)
downloadlibapr-9799653bf436121fc0f624374a18543a2303fd21.tar.gz
We expect iov lengths to match up with a size_t, not ssize_t.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@568881 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_want.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apr_want.h b/include/apr_want.h
index be35f9897..1afed3606 100644
--- a/include/apr_want.h
+++ b/include/apr_want.h
@@ -92,7 +92,7 @@
struct iovec
{
char *iov_base;
- int iov_len;
+ size_t iov_len;
};
#endif