mirror of
https://github.com/RustAudio/rodio
synced 2024-12-13 13:42:34 +00:00
fix(seek) conditional compilation
This commit is contained in:
parent
34366fe656
commit
a4d167f9ec
1 changed files with 1 additions and 1 deletions
|
@ -412,7 +412,7 @@ pub enum SeekError {
|
||||||
#[cfg(feature = "symphonia")]
|
#[cfg(feature = "symphonia")]
|
||||||
#[error("Error seeking: {0}")]
|
#[error("Error seeking: {0}")]
|
||||||
SymphoniaDecoder(#[from] crate::decoder::symphonia::SeekError),
|
SymphoniaDecoder(#[from] crate::decoder::symphonia::SeekError),
|
||||||
#[cfg(all(feature = "wav", not(feature = "symphonia-wav")))]
|
#[cfg(feature = "wav")]
|
||||||
#[error("Error seeking in wav source: {0}")]
|
#[error("Error seeking in wav source: {0}")]
|
||||||
HoundDecoder(std::io::Error),
|
HoundDecoder(std::io::Error),
|
||||||
#[error("An error occurred")]
|
#[error("An error occurred")]
|
||||||
|
|
Loading…
Reference in a new issue