summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2009-01-05 00:45:02 +0100
committerYves Orton <demerphq@gmail.com>2009-01-05 00:45:02 +0100
commita49f3ea3320dd4b0e999281e3f394540c61f1b8a (patch)
tree79f68f6fee520fc655c62448fe75470197fa4024 /perl.c
parent505afc734ed453559bc43362154a2694b59ece9e (diff)
downloadperl-a49f3ea3320dd4b0e999281e3f394540c61f1b8a.tar.gz
eliminate double stringification, the defines as done in git_version.h are already quoted
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 34bbbab984..9091f2fcb4 100644
--- a/perl.c
+++ b/perl.c
@@ -3309,7 +3309,7 @@ Perl_moreswitches(pTHX_ const char *s)
{
SV* level= vstringify(PL_patchlevel);
#ifdef PERL_PATCHNUM
- SV* num= newSVpvn(STRINGIFY(PERL_PATCHNUM),sizeof(STRINGIFY(PERL_PATCHNUM))-1);
+ SV* num= newSVpvn(PERL_PATCHNUM,sizeof(PERL_PATCHNUM)-1);
#ifdef PERL_GIT_UNCOMMITTED_CHANGES
sv_catpvs(num, "*");
#endif