Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 42272 invoked from network); 24 Sep 2010 21:08:04 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 24 Sep 2010 21:08:04 -0000 Received: (qmail 369 invoked by uid 500); 24 Sep 2010 21:08:04 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 300 invoked by uid 500); 24 Sep 2010 21:08:04 -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 291 invoked by uid 99); 24 Sep 2010 21:08:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Sep 2010 21:08:04 +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; Fri, 24 Sep 2010 21:08:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B5A1323889B2; Fri, 24 Sep 2010 21:07:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1001075 - /apr/apr-util/branches/1.5.x/dbd/apr_dbd_odbc.c Date: Fri, 24 Sep 2010 21:07:40 -0000 To: commits@apr.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100924210740.B5A1323889B2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Fri Sep 24 21:07:40 2010 New Revision: 1001075 URL: http://svn.apache.org/viewvc?rev=1001075&view=rev Log: backport apr trunk r1001074 fix compiler warning for non-static function with no prototype Modified: apr/apr-util/branches/1.5.x/dbd/apr_dbd_odbc.c Modified: apr/apr-util/branches/1.5.x/dbd/apr_dbd_odbc.c URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/dbd/apr_dbd_odbc.c?rev=1001075&r1=1001074&r2=1001075&view=diff ============================================================================== --- apr/apr-util/branches/1.5.x/dbd/apr_dbd_odbc.c (original) +++ apr/apr-util/branches/1.5.x/dbd/apr_dbd_odbc.c Fri Sep 24 21:07:40 2010 @@ -1451,9 +1451,9 @@ static int odbc_pvquery(apr_pool_t * poo } /** pselect: select using a prepared statement + args **/ -int odbc_pselect(apr_pool_t * pool, apr_dbd_t * handle, - apr_dbd_results_t ** res, apr_dbd_prepared_t * statement, - int random, const char **args) +static int odbc_pselect(apr_pool_t * pool, apr_dbd_t * handle, + apr_dbd_results_t ** res, apr_dbd_prepared_t * statement, + int random, const char **args) { SQLRETURN rc = SQL_SUCCESS; int i, argp;