diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-09-04 09:30:11 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-12 18:20:17 +0900 |
| commit | a127ded486b173b1b805da2c39d656c77d98c6cc (patch) | |
| tree | 7dd265068a0bbf9f5fb3e6e2386e88bd7e7ceb2c /src/vm.c | |
| parent | fe3c3bb661aac19761dcb446935d605a946065b9 (diff) | |
| download | mruby-a127ded486b173b1b805da2c39d656c77d98c6cc.tar.gz mruby-a127ded486b173b1b805da2c39d656c77d98c6cc.zip | |
Fix warning from VC regarding implicit int conversion.
Diffstat (limited to 'src/vm.c')
| -rw-r--r-- | src/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -223,7 +223,7 @@ mrb_stack_extend(mrb_state *mrb, mrb_int room) } static inline struct REnv* -uvenv(mrb_state *mrb, int up) +uvenv(mrb_state *mrb, mrb_int up) { const struct RProc *proc = mrb->c->ci->proc; struct REnv *e; |
