Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6CB0710406 for ; Fri, 27 Sep 2013 22:22:34 +0000 (UTC) Received: (qmail 73007 invoked by uid 500); 27 Sep 2013 22:22:34 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 72988 invoked by uid 500); 27 Sep 2013 22:22:34 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 72981 invoked by uid 99); 27 Sep 2013 22:22:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Sep 2013 22:22:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Fri, 27 Sep 2013 22:22:31 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id AD649238890B; Fri, 27 Sep 2013 22:22:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1527105 - /subversion/trunk/subversion/libsvn_subr/cache_config.c Date: Fri, 27 Sep 2013 22:22:10 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130927222210.AD649238890B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stefan2 Date: Fri Sep 27 22:22:10 2013 New Revision: 1527105 URL: http://svn.apache.org/r1527105 Log: Follow-up to r1527103: fix a "shadow identifier" compiler warning. * subversion/libsvn_subr/cache_config.c (svn_cache_config_get): rename POOL parameter Modified: subversion/trunk/subversion/libsvn_subr/cache_config.c Modified: subversion/trunk/subversion/libsvn_subr/cache_config.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/cache_config.c?rev=1527105&r1=1527104&r2=1527105&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_subr/cache_config.c (original) +++ subversion/trunk/subversion/libsvn_subr/cache_config.c Fri Sep 27 22:22:10 2013 @@ -72,10 +72,10 @@ svn_cache_config_get(void) /* Initializer function as required by svn_atomic__init_once. Allocate * the process-global (singleton) membuffer cache and return it in the - * svn_membuffer_t * in *BATON. POOL is unused and should be NULL. + * svn_membuffer_t * in *BATON. UNUSED_POOL is unused and should be NULL. */ static svn_error_t * -initialize_cache(void *baton, apr_pool_t *pool) +initialize_cache(void *baton, apr_pool_t *unused_pool) { svn_membuffer_t **cache_p = baton; svn_membuffer_t *cache = NULL;