Change 16158 by jhi@alpha on 2002/04/25 14:38:13
Subject: Re: [PATCH] pp_ctl.c:pp_require
From: "Newton, Philip" <[EMAIL PROTECTED]>
Date: Thu, 25 Apr 2002 17:35:23 +0200
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
.... //depot/perl/pp_ctl.c#314 edit
Differences ...
==== //depot/perl/pp_ctl.c#314 (text) ====
Index: perl/pp_ctl.c
--- perl/pp_ctl.c.~1~ Thu Apr 25 08:45:05 2002
+++ perl/pp_ctl.c Thu Apr 25 08:45:05 2002
@@ -2948,8 +2948,8 @@
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--"
End of Patch.