Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 33965 invoked from network); 8 Jul 2005 19:10:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Jul 2005 19:10:34 -0000 Received: (qmail 74368 invoked by uid 500); 8 Jul 2005 19:10:34 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 74354 invoked by uid 500); 8 Jul 2005 19:10:34 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@perl.apache.org List-Id: Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 74340 invoked by uid 99); 8 Jul 2005 19:10:34 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 08 Jul 2005 12:10:22 -0700 Received: (qmail 33748 invoked by uid 65534); 8 Jul 2005 19:10:19 -0000 Message-ID: <20050708191019.33747.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r209862 - /perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h Date: Fri, 08 Jul 2005 19:10:18 -0000 To: modperl-cvs@perl.apache.org From: stas@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: stas Date: Fri Jul 8 12:10:18 2005 New Revision: 209862 URL: http://svn.apache.org/viewcvs?rev=209862&view=rev Log: blead perl fix: casting warning Modified: perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h Modified: perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h?rev=209862&r1=209861&r2=209862&view=diff ============================================================================== --- perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h (original) +++ perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h Fri Jul 8 12:10:18 2005 @@ -18,7 +18,7 @@ Perl_newSVpvf(aTHX_ "0x%lx", (unsigned long)aTHX) #else #define mpxs_ModPerl__Util_current_perl_id() \ - Perl_newSVpvf(aTHX_ "0x%lx", 0) + Perl_newSVpvf(aTHX_ "0x%lx", (unsigned long)0) #endif static MP_INLINE void mpxs_ModPerl__Util_untaint(pTHX_ I32 items,