Fix shorten-64-to-32 compile warnings/errors
This commit is contained in:
parent
b193041b99
commit
9556342838
Notes:
git
2019-09-27 00:02:31 +09:00
2
thread.c
2
thread.c
@ -671,7 +671,7 @@ thread_do_start(rb_thread_t *th)
|
|||||||
|
|
||||||
if (th->invoke_type == thread_invoke_type_proc) {
|
if (th->invoke_type == thread_invoke_type_proc) {
|
||||||
VALUE args = th->invoke_arg.proc.args;
|
VALUE args = th->invoke_arg.proc.args;
|
||||||
int args_len = RARRAY_LEN(args);
|
int args_len = (int)RARRAY_LEN(args);
|
||||||
int kw_splat = th->invoke_arg.proc.kw_splat;
|
int kw_splat = th->invoke_arg.proc.kw_splat;
|
||||||
const VALUE *args_ptr;
|
const VALUE *args_ptr;
|
||||||
VALUE procval = th->invoke_arg.proc.proc;
|
VALUE procval = th->invoke_arg.proc.proc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user