diff --git a/ChangeLog b/ChangeLog index 0858492b21..d3cc827984 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 16 09:17:48 2014 Nobuyoshi Nakada + + * cont.c (rb_fiber_t): fix compile error caused by move to + vm_core.h at r47964. [Feature #10341] + Thu Oct 16 08:58:11 2014 Eric Wong * test/ruby/test_process.rb (test_deadlock_by_signal_at_forking): diff --git a/cont.c b/cont.c index 3c069e4945..a9fc030af2 100644 --- a/cont.c +++ b/cont.c @@ -153,7 +153,7 @@ typedef struct rb_fiber_struct { size_t ss_size; #endif #endif -} rb_fiber_t; +}; static const rb_data_type_t cont_data_type, fiber_data_type; static VALUE rb_cContinuation;