Commit 0e0c9609 authored by Tomasz Dąbrowski's avatar Tomasz Dąbrowski Committed by Tomasz Dabrowski

fix: src\kernel.c(861): warning C4244: '=': conversion from 'mrb_int' to...

fix: src\kernel.c(861): warning C4244: '=': conversion from 'mrb_int' to 'int', possible loss of data
parent 7d980558
......@@ -855,7 +855,7 @@ MRB_API mrb_value
mrb_f_raise(mrb_state *mrb, mrb_value self)
{
mrb_value a[2], exc;
int argc;
mrb_int argc;
argc = mrb_get_args(mrb, "|oo", &a[0], &a[1]);
......
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