Commit 5ed76e38 authored by Tomasz Dąbrowski's avatar Tomasz Dąbrowski Committed by Tomasz Dabrowski

fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to 'int',...

fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to 'int', possible loss of data
parent 9c5db48d
...@@ -570,7 +570,7 @@ mrb_get_args(mrb_state *mrb, const char *format, ...) ...@@ -570,7 +570,7 @@ mrb_get_args(mrb_state *mrb, const char *format, ...)
mrb_int i = 0; mrb_int i = 0;
va_list ap; va_list ap;
mrb_int argc = mrb->c->ci->argc; mrb_int argc = mrb->c->ci->argc;
int arg_i = 0; mrb_int arg_i = 0;
mrb_value *array_argv; mrb_value *array_argv;
mrb_bool opt = FALSE; mrb_bool opt = FALSE;
mrb_bool opt_skip = TRUE; mrb_bool opt_skip = TRUE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment