Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 42510 invoked from network); 27 Aug 2008 05:27:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Aug 2008 05:27:33 -0000 Received: (qmail 27899 invoked by uid 500); 27 Aug 2008 05:27:31 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 27861 invoked by uid 500); 27 Aug 2008 05:27:31 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 27852 invoked by uid 99); 27 Aug 2008 05:27:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Aug 2008 22:27:31 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Aug 2008 05:26:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AB01623889C0; Tue, 26 Aug 2008 22:27:12 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r689360 - /apr/apr/trunk/include/apr_want.h Date: Wed, 27 Aug 2008 05:27:12 -0000 To: commits@apr.apache.org From: jerenkrantz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080827052712.AB01623889C0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jerenkrantz Date: Tue Aug 26 22:27:11 2008 New Revision: 689360 URL: http://svn.apache.org/viewvc?rev=689360&view=rev Log: Win32: Match the type of our custom iovec's iov_base to match Unix's type. * include/apr_want.h (struct iovec.iov_base): Have our fake iovec structure match the Unix type definition of iov_base by being a void* not a char*. 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=689360&r1=689359&r2=689360&view=diff ============================================================================== --- apr/apr/trunk/include/apr_want.h (original) +++ apr/apr/trunk/include/apr_want.h Tue Aug 26 22:27:11 2008 @@ -91,7 +91,7 @@ struct iovec { - char *iov_base; + void *iov_base; size_t iov_len; };