summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorNewton, Philip <Philip.Newton@datenrevision.de>2002-04-25 19:35:23 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-25 14:38:13 +0000
commit0b003aef35888ea1c6c34161b179872ac4b00438 (patch)
tree200c154513b0dee98810e4b3a7ea8228b5f50e44 /pp_ctl.c
parentb11a3e0048217d7dd68cad062f2aaf766967b8c5 (diff)
downloadperl-0b003aef35888ea1c6c34161b179872ac4b00438.tar.gz
Re: [PATCH] pp_ctl.c:pp_require
From: "Newton, Philip" <Philip.Newton@datenrevision.de> Message-ID: <C9A98F2128EDD411B0920008C7B337A13DCC77@hamsem01.de.gedas.vwg> p4raw-id: //depot/perl@16158
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 8e16629ee1..b2499ebdfa 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--"