1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-06 03:50:06 +02:00

Fix clippy warnings

This commit is contained in:
Roderick van Domburg 2022-04-07 22:32:43 +02:00
parent 6a98a0138c
commit 1290ee9925
No known key found for this signature in database
GPG key ID: A9EF5222A26F0451
4 changed files with 5 additions and 5 deletions

View file

@ -139,7 +139,7 @@ enum ControlFlow {
}
impl AudioFileFetch {
fn is_download_streaming(&mut self) -> bool {
fn is_download_streaming(&self) -> bool {
self.shared.download_streaming.load(Ordering::Acquire)
}