summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-18 12:41:18 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-18 12:41:18 +0000
commitc2eeec8fd40db6b19b7e385108d6fd5e56569a2b (patch)
tree9b93262e3541370e939c807a6cbe09d464e6e540 /eval.c
parent06f6c2d35546a986fa637e78a6fcd4fceb03871e (diff)
* eval.c (rb_call0): make the pointer to NODE volatile
instead of NODE itself. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index e903721576..9e380569b6 100644
--- a/eval.c
+++ b/eval.c
@@ -5699,7 +5699,7 @@ rb_call0(klass, recv, id, oid, argc, argv, body, nosuper)
ID oid;
int argc; /* OK */
VALUE *argv; /* OK */
- volatile NODE *body;
+ NODE * volatile body;
int nosuper;
{
NODE *b2; /* OK */