File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1515
1616void coroutine_trampoline (void * _start , void * _context )
1717{
18- coroutine_start start = _start ;
18+ coroutine_start start = ( coroutine_start ) _start ;
1919 struct coroutine_context * context = _context ;
2020
2121 start (context -> from , context );
Original file line number Diff line number Diff line change @@ -464,7 +464,7 @@ rb_mjit_recompile_iseq(const rb_iseq_t *iseq)
464464
465465 CRITICAL_SECTION_START (3 , "in rb_mjit_recompile_iseq" );
466466 remove_from_list (iseq -> body -> jit_unit , & active_units );
467- iseq -> body -> jit_func = (void * )NOT_ADDED_JIT_ISEQ_FUNC ;
467+ iseq -> body -> jit_func = (mjit_func_t )NOT_ADDED_JIT_ISEQ_FUNC ;
468468 add_to_list (iseq -> body -> jit_unit , & stale_units );
469469 CRITICAL_SECTION_FINISH (3 , "in rb_mjit_recompile_iseq" );
470470
You can’t perform that action at this time.
0 commit comments