diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-11-02 13:04:10 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-11-02 13:04:10 +0000 |
commit | e3cbe32fd54913ec661efbd9621eea9e70c8ca47 (patch) | |
tree | 0686fe125de4b7c18fd99486b199c442f2f68020 | |
parent | 24b23f37fefbcc71a881f6805d87449a234dc645 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |