sort: rename lock binding variable

This commit is contained in:
Niyaz Nigmatullin 2022-08-10 12:20:25 +03:00
parent 50f1e9a5fa
commit e43872d4c7

View file

@ -71,7 +71,7 @@ impl TmpDirWrapper {
}
pub fn wait_if_signal(&self) {
let _ = self.lock.lock().unwrap();
let _lock = self.lock.lock().unwrap();
}
}