diff --git a/crates/turbo-tasks-memory/src/task.rs b/crates/turbo-tasks-memory/src/task.rs index 7e7f206ea64f7..f9ee262ba58f3 100644 --- a/crates/turbo-tasks-memory/src/task.rs +++ b/crates/turbo-tasks-memory/src/task.rs @@ -875,7 +875,7 @@ impl Task { ) { let mut state = self.full_state_mut(); match state.state_type { - InProgress(state) if state.stale => { + InProgress(ref state) if state.stale => { // We don't want to assign the output cell here // as we want to avoid unnecessary updates // TODO maybe this should be controlled by a heuristic