From a2fcfba534fdd5a64b10f54aaaa8f3acc206e52f Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 2 Aug 2017 00:54:13 +0000 Subject: eval.c: fix state type * eval.c (setup_exception): state is a raised thread flag, not for EXEC_TAG. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index e4867d182a..bebed0b19f 100644 --- a/eval.c +++ b/eval.c @@ -500,7 +500,7 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause) file = rb_source_loc(&line); if ((file && !NIL_P(mesg)) || (cause != Qundef)) { - enum ruby_tag_type state; + int state = 0; TH_PUSH_TAG(th); if (EXEC_TAG() == TAG_NONE && !(state = rb_threadptr_set_raised(th))) { -- cgit v1.2.3