mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Fixes a number of "comparison between signed and unsigned" warnings.
This commit is contained in:
+1
-1
@@ -66,7 +66,7 @@ mrb_ary_new(mrb_state *mrb)
|
||||
static inline void
|
||||
array_copy(mrb_value *dst, const mrb_value *src, size_t size)
|
||||
{
|
||||
int i;
|
||||
size_t i;
|
||||
|
||||
for (i = 0; i < size; i++) {
|
||||
dst[i] = src[i];
|
||||
|
||||
Reference in New Issue
Block a user