Commit 7a2391b1 authored by Tomasz Dąbrowski's avatar Tomasz Dąbrowski Committed by Tomasz Dabrowski

fix: src\error.c(76): warning C4244: '=': conversion from 'mrb_int' to 'int', possible loss of data

parent 4d6b8dbc
......@@ -71,7 +71,7 @@ exc_exception(mrb_state *mrb, mrb_value self)
{
mrb_value exc;
mrb_value a;
int argc;
mrb_int argc;
argc = mrb_get_args(mrb, "|o", &a);
if (argc == 0) return self;
......
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