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

fix: src\proc.c(96): warning C4244: 'function': conversion from 'mrb_int' to...

fix: src\proc.c(96): warning C4244: 'function': conversion from 'mrb_int' to 'int', possible loss of data
parent 490de9db
......@@ -35,7 +35,7 @@ mrb_proc_new(mrb_state *mrb, mrb_irep *irep)
}
static struct REnv*
env_new(mrb_state *mrb, int nlocals)
env_new(mrb_state *mrb, mrb_int nlocals)
{
struct REnv *e;
......
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