diff --git a/ChangeLog b/ChangeLog index fb9a06f9cb..b59a09eb77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 2 07:56:49 2014 Eric Wong + + * iseq.c (rb_iseq_line_trace_each): explicit cast + Fix https://travis-ci.org/ruby/ruby/jobs/36814282 + Thu Oct 2 05:40:05 2014 Eric Wong * ruby.h: set rb_event_flag_t to uint32_t diff --git a/iseq.c b/iseq.c index 6b89ea5daa..2872d4f131 100644 --- a/iseq.c +++ b/iseq.c @@ -2154,7 +2154,9 @@ rb_iseq_line_trace_each(VALUE iseqval, int (*func)(int line, rb_event_flag_t *ev insn = iseq_original[pos]; if (insn == BIN(trace)) { - rb_event_flag_t current_events = (VALUE)iseq_original[pos+1]; + rb_event_flag_t current_events; + + current_events = (rb_event_flag_t)iseq_original[pos+1]; if (current_events & RUBY_EVENT_LINE) { rb_event_flag_t events = current_events & RUBY_EVENT_SPECIFIED_LINE;