summaryrefslogtreecommitdiff
path: root/cli/tsc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r--cli/tsc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs
index 5c43f0231..e2fc80676 100644
--- a/cli/tsc.rs
+++ b/cli/tsc.rs
@@ -227,7 +227,7 @@ fn op<F>(op_fn: F) -> Box<OpFn>
where
F: Fn(&mut State, Value) -> Result<Value, AnyError> + 'static,
{
- op_sync(move |s, args, _bufs| {
+ op_sync(move |s, args, _: ()| {
let state = s.borrow_mut::<State>();
op_fn(state, args)
})