diff --git a/zenith_utils/src/seqwait.rs b/zenith_utils/src/seqwait.rs index bd94b8b350..633a862fde 100644 --- a/zenith_utils/src/seqwait.rs +++ b/zenith_utils/src/seqwait.rs @@ -63,7 +63,7 @@ impl SeqWait { // This will steal the entire waiters map. // When we drop it all waiters will be woken. - mem::take(&mut internal.waiters); + mem::take(&mut internal.waiters) // Drop the lock as we exit this scope. };