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/vm.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/vm.c')
| -rw-r--r-- | src/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ The value below allows about 60000 recursive calls in the simplest case. */ static inline void stack_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]; |
