summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-21 16:53:39 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-21 16:53:39 +0000
commitb22c7a20398f928f9697b491d180b979ff211bd6 (patch)
treea7c022e6617a2b7ee0b3de5e556bca3ccca7a397 /perl.c
parentf22444f551ba0fe71cb3979541c3e330a1c83a89 (diff)
downloadperl-b22c7a20398f928f9697b491d180b979ff211bd6.tar.gz
generalize "%v" format into a flag for any integral format type:
"%vd", "%v#o", "%*vX", etc are allowed p4raw-id: //depot/perl@5181
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index eba7e5cd65..cce5c514e0 100644
--- a/perl.c
+++ b/perl.c
@@ -2122,7 +2122,7 @@ Perl_moreswitches(pTHX_ char *s)
s++;
return s;
case 'v':
- printf(Perl_form(aTHX_ "\nThis is perl, v%v built for %s",
+ printf(Perl_form(aTHX_ "\nThis is perl, v%vd built for %s",
PL_patchlevel, ARCHNAME));
#if defined(LOCAL_PATCH_COUNT)
if (LOCAL_PATCH_COUNT > 0)