summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-11-02 13:04:10 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-11-02 13:04:10 +0000
commite3cbe32fd54913ec661efbd9621eea9e70c8ca47 (patch)
tree0686fe125de4b7c18fd99486b199c442f2f68020
parent24b23f37fefbcc71a881f6805d87449a234dc645 (diff)
downloadperl-e3cbe32fd54913ec661efbd9621eea9e70c8ca47.tar.gz
This volatile modifier is not on the referent, but on the pointer
(see change 28606) p4raw-id: //depot/perl@29190
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index a6346f696d..5325a5abac 100644
--- a/op.c
+++ b/op.c
@@ -2119,7 +2119,7 @@ Perl_fold_constants(pTHX_ register OP *o)
register OP *curop;
OP *newop;
VOL I32 type = o->op_type;
- VOL SV *sv = NULL;
+ SV * VOL sv = NULL;
int ret = 0;
I32 oldscope;
OP *old_next;