fix: non-binding let in SQLite driver

This commit is contained in:
Austin Bonander 2023-03-21 12:01:53 -07:00
parent 7d4333e50d
commit c6f8a41267
No known key found for this signature in database
GPG Key ID: 461F7F0F45383F2B

View File

@ -48,7 +48,7 @@ impl Notify {
}
fn wait(&self) {
let _ = self
let _guard = self
.condvar
.wait_while(self.mutex.lock().unwrap(), |fired| !*fired)
.unwrap();