diff options
Diffstat (limited to 'libdeno/snapshot_creator.cc')
-rw-r--r-- | libdeno/snapshot_creator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdeno/snapshot_creator.cc b/libdeno/snapshot_creator.cc index 6a83f963a..d38b6c075 100644 --- a/libdeno/snapshot_creator.cc +++ b/libdeno/snapshot_creator.cc @@ -23,7 +23,7 @@ int main(int argc, char** argv) { CHECK(deno::ReadFileToString(js_fn, &js_source)); deno_init(); - deno_config config = {1, deno::empty_buf, deno::empty_buf, nullptr, nullptr}; + deno_config config = {1, deno::empty_buf, deno::empty_buf, nullptr}; Deno* d = deno_new(config); int r = deno_execute(d, nullptr, js_fn, js_source.c_str()); |