diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-27 07:40:13 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-01-27 07:40:13 -0800 |
| commit | 60788672f26acd51438c1d7241cc134b03510272 (patch) | |
| tree | e0f3155202e03d9bc4109e0a2b3fdf9777c664f6 /src/array.c | |
| parent | a43b53c14c23f4718d65b5e867daf3ec098d1bb5 (diff) | |
| parent | 8f83f6674c536280e61692b9f2678959928613ff (diff) | |
| download | mruby-60788672f26acd51438c1d7241cc134b03510272.tar.gz mruby-60788672f26acd51438c1d7241cc134b03510272.zip | |
Merge pull request #786 from carsonmcdonald/unsignedfixes
Fixes a number of "comparison between signed and unsigned" warnings.
Diffstat (limited to 'src/array.c')
| -rw-r--r-- | src/array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/array.c b/src/array.c index d4f5d1c5e..a358e1207 100644 --- a/src/array.c +++ b/src/array.c @@ -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]; |
