mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 04:24:23 +00:00
Fixed type of an index variable
This commit is contained in:
parent
9914d6e992
commit
bdc62dfc8e
@ -36,7 +36,7 @@ static VALUE array_spec_RARRAY_PTR_assign(VALUE self, VALUE array, VALUE value)
|
||||
|
||||
static VALUE array_spec_RARRAY_PTR_memcpy(VALUE self, VALUE array1, VALUE array2) {
|
||||
VALUE *ptr1, *ptr2;
|
||||
int size;
|
||||
long size;
|
||||
size = RARRAY_LEN(array1);
|
||||
ptr1 = RARRAY_PTR(array1);
|
||||
ptr2 = RARRAY_PTR(array2);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user