summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorNewton, Philip <Philip.Newton@datenrevision.de>2002-04-25 18:01:14 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-25 14:30:40 +0000
commitfd7c759890fb35d6828190e9cc86c897c789a73d (patch)
tree16f9bb85ff73fa332b10389321d508568f8cb18b /pp_ctl.c
parentc803eecc4a5d53bd87a137c4e4a6cd7a17bcad5b (diff)
downloadperl-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 7a440aef4e..8e16629ee1 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);
}