summaryrefslogtreecommitdiff
path: root/pad.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2016-09-20 09:45:07 +0100
committerDavid Mitchell <davem@iabyn.com>2016-09-26 09:20:14 +0100
commit5debce0abfd900416a8fae42c0fced0298d2957c (patch)
tree6b95439124f94aa2ba546de47aced0b3f8cc2848 /pad.c
parent98fce2a4417fa36585bb48f6ae845bee93cac0fa (diff)
downloadperl-5debce0abfd900416a8fae42c0fced0298d2957c.tar.gz
fix builds under USE_PAD_RESET
It had suffered some bitrot.
Diffstat (limited to 'pad.c')
-rw-r--r--pad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pad.c b/pad.c
index 7cf1fe3058..bdaf948330 100644
--- a/pad.c
+++ b/pad.c
@@ -756,7 +756,7 @@ Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype)
sv = *av_fetch(PL_comppad, retval, TRUE);
if (!(SvFLAGS(sv) &
#ifdef USE_PAD_RESET
- (konst ? SVs_PADTMP : 0))
+ (konst ? SVs_PADTMP : 0)
#else
SVs_PADTMP
#endif