Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 13041 invoked from network); 26 Dec 2008 23:30:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Dec 2008 23:30:03 -0000 Received: (qmail 23520 invoked by uid 500); 26 Dec 2008 23:30:02 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 23469 invoked by uid 500); 26 Dec 2008 23:30:02 -0000 Mailing-List: contact cvs-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 cvs@httpd.apache.org Received: (qmail 23460 invoked by uid 99); 26 Dec 2008 23:30:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Dec 2008 15:30:02 -0800 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, 26 Dec 2008 23:30:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 32992238895F; Fri, 26 Dec 2008 15:29:41 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r729564 - /httpd/sandbox/mod_mbox-3/module-2.0/mod_mbox_out.c Date: Fri, 26 Dec 2008 23:29:41 -0000 To: cvs@httpd.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081226232941.32992238895F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pquerna Date: Fri Dec 26 15:29:40 2008 New Revision: 729564 URL: http://svn.apache.org/viewvc?rev=729564&view=rev Log: Fix warnings: Make mbox_static_msglist_nav static and return void. Modified: httpd/sandbox/mod_mbox-3/module-2.0/mod_mbox_out.c Modified: httpd/sandbox/mod_mbox-3/module-2.0/mod_mbox_out.c URL: http://svn.apache.org/viewvc/httpd/sandbox/mod_mbox-3/module-2.0/mod_mbox_out.c?rev=729564&r1=729563&r2=729564&view=diff ============================================================================== --- httpd/sandbox/mod_mbox-3/module-2.0/mod_mbox_out.c (original) +++ httpd/sandbox/mod_mbox-3/module-2.0/mod_mbox_out.c Fri Dec 26 15:29:40 2008 @@ -674,9 +674,9 @@ } } -apr_status_t mbox_static_msglist_nav(request_rec *r, char *baseURI, - int pages, int current_page, - int sortFlags) +static void mbox_static_msglist_nav(request_rec *r, char *baseURI, + int pages, int current_page, + int sortFlags) { ap_rputs(" Message list", r);