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/state.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/state.c')
| -rw-r--r-- | src/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.c b/src/state.c index e30b0cea3..53773ac89 100644 --- a/src/state.c +++ b/src/state.c @@ -85,7 +85,7 @@ void mrb_free_heap(mrb_state *mrb); void mrb_close(mrb_state *mrb) { - int i; + size_t i; mrb_final_core(mrb); |
