From: Newton, Philip Date: Thu, 25 Apr 2002 16:01:14 +0000 (+0200) Subject: pp_ctl.c:pp_require X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fd7c759890fb35d6828190e9cc86c897c789a73d;p=p5sagit%2Fp5-mst-13.2.git pp_ctl.c:pp_require From: "Newton, Philip" Message-ID: p4raw-id: //depot/perl@16157 --- diff --git a/pp_ctl.c b/pp_ctl.c index 7a440ae..8e16629 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -2945,9 +2945,9 @@ PP(pp_require) /* help out with the "use 5.6" confusion */ if (sver == 0 && (rev > 5 || (rev == 5 && ver >= 100))) { - DIE(aTHX_ "Perl v%"UVuf".%"UVuf".%"UVuf" required--" - "this is only v%d.%d.%d, stopped" - " (did you mean v%"UVuf".%03"UVuf"?)", + 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); }