Commit 85dac05c authored by Ryunosuke SATO's avatar Ryunosuke SATO

Stop warning in compiling proc.c

proc.c:46: warning: ‘return’ with a value, in function returning void

introduced in f312af11.
parent 1b716b93
......@@ -43,7 +43,7 @@ closure_setup(mrb_state *mrb, struct RProc *p, int nlocals)
e = mrb->ci->env;
}
p->env = e;
return p;
return;
}
struct RProc *
......
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