Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 27886 invoked from network); 1 Jun 2009 14:17:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Jun 2009 14:17:24 -0000 Received: (qmail 52068 invoked by uid 500); 1 Jun 2009 14:17:35 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 51977 invoked by uid 500); 1 Jun 2009 14:17:35 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 51959 invoked by uid 99); 1 Jun 2009 14:17:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2009 14:17:35 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: 76.96.62.64 is neither permitted nor denied by domain of jim@jagunet.com) Received: from [76.96.62.64] (HELO QMTA07.westchester.pa.mail.comcast.net) (76.96.62.64) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2009 14:17:24 +0000 Received: from OMTA05.westchester.pa.mail.comcast.net ([76.96.62.43]) by QMTA07.westchester.pa.mail.comcast.net with comcast id yar01b0030vyq2s57eGFxG; Mon, 01 Jun 2009 14:16:15 +0000 Received: from [192.168.199.10] ([69.251.84.64]) by OMTA05.westchester.pa.mail.comcast.net with comcast id yeH31b00a1PGofZ3ReH4xa; Mon, 01 Jun 2009 14:17:04 +0000 Message-Id: From: Jim Jagielski To: dev@httpd.apache.org In-Reply-To: <4A23DA21.8070201@apache.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v935.3) Subject: Re: API mismatch to slotmem API. Date: Mon, 1 Jun 2009 10:17:02 -0400 References: <4A23DA21.8070201@apache.org> X-Mailer: Apple Mail (2.935.3) X-Virus-Checked: Checked by ClamAV on apache.org Thanks! Fixed ;) On Jun 1, 2009, at 9:39 AM, Ruediger Pluem wrote: > Compiling trunk I see the following warning > > mod_slotmem_shm.c:547: warning: initialization from incompatible =20 > pointer type > > This is caused by a prototype mismatch: > > In mod_slotmem_shm.c: > > static apr_status_t slotmem_grab(ap_slotmem_instance_t *slot, =20 > unsigned int *id) > > in ap_slotmem.h: > > apr_status_t (* grab)(ap_slotmem_instance_t *s, unsigned int item_id); > > > Can someone with more insight in the API decide whether id should be =20= > a pointer or not? > and either fix ap_slotmem.h and the other slotmem modules or fix =20 > mod_slotmem_shm? > > Regards > > R=FCdiger >