summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-11-06 01:25:00 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-11-06 01:25:11 -0700
commita4a3cf7419a4f30455db08fefe2cac688567ac22 (patch)
tree3499a9e2399735ef1bb249cce953df8b4b09eb85 /op.c
parent48b8c6fce83c3d16b1574a410dab28ce19db4df3 (diff)
downloadperl-a4a3cf7419a4f30455db08fefe2cac688567ac22.tar.gz
op.c:ck_eval: consting
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index fc6cd04d78..2399bb3013 100644
--- a/op.c
+++ b/op.c
@@ -7479,7 +7479,7 @@ Perl_ck_eval(pTHX_ OP *o)
}
}
else {
- U8 priv = o->op_private;
+ const U8 priv = o->op_private;
#ifdef PERL_MAD
OP* const oldo = o;
#else