mirror of
https://github.com/iluvcapra/bwavfile.git
synced 2025-12-31 08:50:44 +00:00
clippy: Remove unnecessary use of .into()
This commit is contained in:
@@ -590,7 +590,7 @@ impl<R: Read + Seek> WaveReader<R> {
|
|||||||
.map_err(|e| ParserError::IOError(e))
|
.map_err(|e| ParserError::IOError(e))
|
||||||
}
|
}
|
||||||
Err(ParserError::ChunkMissing { signature: _ }) => Ok(0),
|
Err(ParserError::ChunkMissing { signature: _ }) => Ok(0),
|
||||||
Err(any) => Err(any.into()),
|
Err(any) => Err(any),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user