summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2009-01-05 00:45:02 +0100
committerDavid Mitchell <davem@iabyn.com>2009-04-11 16:45:25 +0100
commit698f09da610c9590becce56ce2a27e1e0a6c26eb (patch)
tree49bc50089229896cd0de7c055e3b591f79de1cc5 /perl.c
parent9671c16e55991050ed379e9bde2c44563156a8d6 (diff)
downloadperl-698f09da610c9590becce56ce2a27e1e0a6c26eb.tar.gz
eliminate double stringification, the defines as done in git_version.h are already quoted
(cherry picked from commit a49f3ea3320dd4b0e999281e3f394540c61f1b8a)
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 f3194661b9..7f42db3fbb 100644
--- a/perl.c
+++ b/perl.c
@@ -3342,7 +3342,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