summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorRonald J. Kimball <rjk@linguist.dartmouth.edu>2001-09-21 08:34:40 -0400
committerAbhijit Menon-Sen <ams@wiw.org>2001-09-21 17:08:24 +0000
commit3b825e419da1c361eab06a1e6d287276c0aef241 (patch)
tree3bf9831a1ca2b68cc3821988b1fd9d8cdcc2f6e0 /pp_ctl.c
parentd5115885304a47d8240951ede80584b00fa589b6 (diff)
downloadperl-3b825e419da1c361eab06a1e6d287276c0aef241.tar.gz
avoid v-strings with require/use
Message-Id: <20010921123440.A148500@linguist.thayer.dartmouth.edu> p4raw-id: //depot/perl@12113
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 0b7daa10d0..5d2d10f94c 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -3078,7 +3078,7 @@ PP(pp_require)
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".%"UVuf".0?)",
+ " (did you mean v%"UVuf".%03"UVuf"?)",
rev, ver, sver, PERL_REVISION, PERL_VERSION,
PERL_SUBVERSION, rev, ver/100);
}