diff options
author | Newton, Philip <Philip.Newton@datenrevision.de> | 2002-04-25 18:01:14 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-25 14:30:40 +0000 |
commit | fd7c759890fb35d6828190e9cc86c897c789a73d (patch) | |
tree | 16f9bb85ff73fa332b10389321d508568f8cb18b /pp_ctl.c | |
parent | c803eecc4a5d53bd87a137c4e4a6cd7a17bcad5b (diff) | |
download | perl-fd7c759890fb35d6828190e9cc86c897c789a73d.tar.gz |
pp_ctl.c:pp_require
From: "Newton, Philip" <Philip.Newton@datenrevision.de>
Message-ID: <C9A98F2128EDD411B0920008C7B337A13DCC76@hamsem01.de.gedas.vwg>
p4raw-id: //depot/perl@16157
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); } |