From commits-return-9361-apmail-apr-commits-archive=apr.apache.org@apr.apache.org Sun Feb 24 14:40:00 2008 Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 41925 invoked from network); 24 Feb 2008 14:40:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Feb 2008 14:40:00 -0000 Received: (qmail 76800 invoked by uid 500); 24 Feb 2008 14:39:55 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 76783 invoked by uid 500); 24 Feb 2008 14:39:55 -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 76772 invoked by uid 99); 24 Feb 2008 14:39:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Feb 2008 06:39:54 -0800 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.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Feb 2008 14:39:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D5F411A9832; Sun, 24 Feb 2008 06:39:36 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r630625 - /apr/apr-util/trunk/buckets/apr_brigade.c Date: Sun, 24 Feb 2008 14:39:36 -0000 To: commits@apr.apache.org From: rpluem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080224143936.D5F411A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rpluem Date: Sun Feb 24 06:39:34 2008 New Revision: 630625 URL: http://svn.apache.org/viewvc?rev=630625&view=rev Log: * Fix compiler warning as written is signed. Noted by: nikke Modified: apr/apr-util/trunk/buckets/apr_brigade.c Modified: apr/apr-util/trunk/buckets/apr_brigade.c URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/buckets/apr_brigade.c?rev=630625&r1=630624&r2=630625&view=diff ============================================================================== --- apr/apr-util/trunk/buckets/apr_brigade.c (original) +++ apr/apr-util/trunk/buckets/apr_brigade.c Sun Feb 24 06:39:34 2008 @@ -653,7 +653,7 @@ /* the cast, in order of appearance */ struct brigade_vprintf_data_t vd; char buf[APR_BUCKET_BUFF_SIZE]; - apr_size_t written; + int written; vd.vbuff.curpos = buf; vd.vbuff.endpos = buf + APR_BUCKET_BUFF_SIZE;