Skip to content

Commit bc3bea1

Browse files
authored
Fix call. (#2550)
1 parent 72a8176 commit bc3bea1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

executor/src/witgen/jit/compiler.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ fn prover_function_code<T: FieldElement, D: DefinitionFetcher>(
583583
),
584584
ProverFunctionComputation::ProvideIfUnknown(code) => {
585585
assert!(!f.compute_multi);
586-
format!("({}).call()", codegen.generate_code_for_expression(code)?)
586+
format!("({}).call(())", codegen.generate_code_for_expression(code)?)
587587
}
588588
ProverFunctionComputation::HandleQueryInputOutput(branches) => {
589589
let indent = " ";

0 commit comments

Comments
 (0)