Fixes a number of "comparison between signed and unsigned" warnings.

This commit is contained in:
Carson McDonald
2013-01-27 09:44:47 -05:00
parent 437aa216fc
commit 8f83f6674c
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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];