Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 9924 invoked from network); 14 Oct 2007 09:56:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Oct 2007 09:56:06 -0000 Received: (qmail 59177 invoked by uid 500); 14 Oct 2007 09:55:54 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 59128 invoked by uid 500); 14 Oct 2007 09:55:54 -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 59117 invoked by uid 99); 14 Oct 2007 09:55:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Oct 2007 02:55:54 -0700 X-ASF-Spam-Status: No, hits=-100.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, 14 Oct 2007 09:56:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id ACE561A9838; Sun, 14 Oct 2007 02:55:15 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r584523 - /apr/apr/trunk/atomic/unix/mutex.c Date: Sun, 14 Oct 2007 09:55:15 -0000 To: commits@apr.apache.org From: rpluem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071014095515.ACE561A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rpluem Date: Sun Oct 14 02:55:15 2007 New Revision: 584523 URL: http://svn.apache.org/viewvc?rev=584523&view=rev Log: * Fix compiler warning. Modified: apr/apr/trunk/atomic/unix/mutex.c Modified: apr/apr/trunk/atomic/unix/mutex.c URL: http://svn.apache.org/viewvc/apr/apr/trunk/atomic/unix/mutex.c?rev=584523&r1=584522&r2=584523&view=diff ============================================================================== --- apr/apr/trunk/atomic/unix/mutex.c (original) +++ apr/apr/trunk/atomic/unix/mutex.c Sun Oct 14 02:55:15 2007 @@ -194,7 +194,7 @@ void *prev; DECLARE_MUTEX_LOCKED(mutex, *mem); - prev = *mem; + prev = *(void **)mem; *mem = with; MUTEX_UNLOCK(mutex);