Skip to content

Commit

Permalink
fix: src\vm.c(438): warning C4244: '=': conversion from 'mrb_int' to …
Browse files Browse the repository at this point in the history
…'int', possible loss of data
  • Loading branch information
dabroz committed Sep 27, 2017
1 parent 5ede90c commit 23cc698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm.c
Expand Up @@ -435,7 +435,7 @@ mrb_funcall_with_block(mrb_state *mrb, mrb_value self, mrb_sym mid, mrb_int argc
ci->mid = mid;
ci->proc = p;
ci->stackent = mrb->c->stack;
ci->argc = argc;
ci->argc = (int)argc;
ci->target_class = c;
mrb->c->stack = mrb->c->stack + n;
if (mrb->c->stbase <= argv && argv < mrb->c->stend) {
Expand Down

0 comments on commit 23cc698

Please sign in to comment.