Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 58984 invoked from network); 21 Jul 2009 22:12:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Jul 2009 22:12:06 -0000 Received: (qmail 64744 invoked by uid 500); 21 Jul 2009 22:13:11 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 64656 invoked by uid 500); 21 Jul 2009 22:13:11 -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 64647 invoked by uid 99); 21 Jul 2009 22:13:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jul 2009 22:13:11 +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; Tue, 21 Jul 2009 22:13:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B8A0123888D0; Tue, 21 Jul 2009 22:12:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r796566 - /httpd/mod_fcgid/trunk/mod_fcgid/fcgid_bridge.c Date: Tue, 21 Jul 2009 22:12:49 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090721221249.B8A0123888D0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wrowe Date: Tue Jul 21 22:12:49 2009 New Revision: 796566 URL: http://svn.apache.org/viewvc?rev=796566&view=rev Log: silence a warning, our time intervals are tiny Modified: httpd/mod_fcgid/trunk/mod_fcgid/fcgid_bridge.c Modified: httpd/mod_fcgid/trunk/mod_fcgid/fcgid_bridge.c URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/mod_fcgid/fcgid_bridge.c?rev=796566&r1=796565&r2=796566&view=diff ============================================================================== --- httpd/mod_fcgid/trunk/mod_fcgid/fcgid_bridge.c (original) +++ httpd/mod_fcgid/trunk/mod_fcgid/fcgid_bridge.c Tue Jul 21 22:12:49 2009 @@ -184,8 +184,8 @@ In this case I will do nothing and return, let the process manager do the job */ - int dt = - apr_time_sec(apr_time_now()) - apr_time_sec(ctx->active_time); + int dt = (int) + (apr_time_sec(apr_time_now()) - apr_time_sec(ctx->active_time)); if (dt > g_busy_timeout) { /* Do nothing but print log */ ap_log_error(APLOG_MARK, APLOG_INFO, 0,