From: Newton, Philip Date: Thu, 25 Apr 2002 17:35:23 +0000 (+0200) Subject: Re: [PATCH] pp_ctl.c:pp_require X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5dacba13203cbd65bde4b7d47427182903506403;p=p5sagit%2Fp5-mst-13.2.git Re: [PATCH] pp_ctl.c:pp_require From: "Newton, Philip" Message-ID: p4raw-id: //depot/perl@16158 --- diff --git a/pp_ctl.c b/pp_ctl.c index 8e16629..b2499eb 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -2948,8 +2948,8 @@ PP(pp_require) DIE(aTHX_ "Perl v%"UVuf".%"UVuf".%"UVuf" required" " (did you mean v%"UVuf".%03"UVuf"?)--" "this is only v%d.%d.%d, stopped", - rev, ver, sver, PERL_REVISION, PERL_VERSION, - PERL_SUBVERSION, rev, ver/100); + rev, ver, sver, rev, ver/100, + PERL_REVISION, PERL_VERSION, PERL_SUBVERSION); } else { DIE(aTHX_ "Perl v%"UVuf".%"UVuf".%"UVuf" required--"