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/codegen.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/codegen.c')
| -rw-r--r-- | src/codegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.c b/src/codegen.c index b8c05b148..5803a9c25 100644 --- a/src/codegen.c +++ b/src/codegen.c @@ -2537,7 +2537,7 @@ codedump(mrb_state *mrb, int n) void codedump_all(mrb_state *mrb, int start) { - int i; + size_t i; for (i=start; i<mrb->irep_len; i++) { codedump(mrb, i); |
