Stop warning in compiling proc.c

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

introduced in f312af11.
This commit is contained in:
Ryunosuke SATO
2012-12-10 17:59:37 +09:00
parent 1b716b93c6
commit 85dac05cf3
+1 -1
View File
@@ -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 *