1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

remove extra argument

This commit is contained in:
Ben Burdette 2022-05-15 12:05:34 -06:00
parent 2acdb90438
commit 6faa56ea1f
3 changed files with 1 additions and 3 deletions

View file

@ -138,7 +138,7 @@ ref<EvalState> EvalCommand::getEvalState()
if (expr.staticEnv) {
auto vm = mapStaticEnvBindings(evalState->symbols, *expr.staticEnv.get(), env);
runRepl(evalState, expr, *vm);
runRepl(evalState, *vm);
}
};
}