Merge pull request #5315 from shuujii/use-mrb_open_core-instead-of-mrb_open--in-mrbc

Use `mrb_open_core()` instead of `mrb_open()`  in `mrbc`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-02-01 10:12:29 +09:00
committed by GitHub
+1 -1
View File
@@ -271,7 +271,7 @@ dump_file(mrb_state *mrb, FILE *wfp, const char *outfile, struct RProc *proc, st
int
main(int argc, char **argv)
{
mrb_state *mrb = mrb_open();
mrb_state *mrb = mrb_open_core(NULL, NULL);
int n, result;
struct mrbc_args args;
FILE *wfp;