summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2006-05-23 19:16:40 -0500
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-05-24 12:24:27 +0000
commite2d306cb6f7ec064f0604b24211e7b2cd0705b39 (patch)
tree227df43c60f3b7efacc0fd3b5b4467abd730c319 /cop.h
parent00bb01c7233bf772ebf55cca8a616f81a2c29810 (diff)
downloadperl-e2d306cb6f7ec064f0604b24211e7b2cd0705b39.tar.gz
Refactoring in av.c
Message-ID: <20060524051640.GA4713@petdance.com> p4raw-id: //depot/perl@28296
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cop.h b/cop.h
index c11687d3dc..83f1f04bd2 100644
--- a/cop.h
+++ b/cop.h
@@ -330,7 +330,7 @@ struct block_sub {
POP_SAVEARRAY(); \
/* abandon @_ if it got reified */ \
if (AvREAL(cx->blk_sub.argarray)) { \
- SSize_t fill = AvFILLp(cx->blk_sub.argarray); \
+ const SSize_t fill = AvFILLp(cx->blk_sub.argarray); \
SvREFCNT_dec(cx->blk_sub.argarray); \
cx->blk_sub.argarray = newAV(); \
av_extend(cx->blk_sub.argarray, fill); \