From commits-return-10830-apmail-apr-commits-archive=apr.apache.org@apr.apache.org Thu Sep 17 19:59:32 2009 Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 44709 invoked from network); 17 Sep 2009 19:59:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Sep 2009 19:59:31 -0000 Received: (qmail 84820 invoked by uid 500); 17 Sep 2009 19:59:31 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 84743 invoked by uid 500); 17 Sep 2009 19:59: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 84734 invoked by uid 99); 17 Sep 2009 19:59:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Sep 2009 19:59:31 +0000 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; Thu, 17 Sep 2009 19:59:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1A0F023888D6; Thu, 17 Sep 2009 19:59:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r816362 - /apr/apr/branches/1.4.x/poll/unix/poll.c Date: Thu, 17 Sep 2009 19:59:07 -0000 To: commits@apr.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090917195907.1A0F023888D6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Thu Sep 17 19:59:06 2009 New Revision: 816362 URL: http://svn.apache.org/viewvc?rev=816362&view=rev Log: bypass v. weird warning Modified: apr/apr/branches/1.4.x/poll/unix/poll.c Modified: apr/apr/branches/1.4.x/poll/unix/poll.c URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/poll/unix/poll.c?rev=816362&r1=816361&r2=816362&view=diff ============================================================================== --- apr/apr/branches/1.4.x/poll/unix/poll.c (original) +++ apr/apr/branches/1.4.x/poll/unix/poll.c Thu Sep 17 19:59:06 2009 @@ -355,8 +355,9 @@ } } } - if ((*num) = j) + if (((*num) = j)) { rv = APR_SUCCESS; + } } if (descriptors && (*num)) *descriptors = pollset->result_set;