mirror of
https://github.com/RustAudio/rodio
synced 2024-12-12 21:22:36 +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")]
|
||||
#[error("Error seeking: {0}")]
|
||||
SymphoniaDecoder(#[from] crate::decoder::symphonia::SeekError),
|
||||
#[cfg(all(feature = "wav", not(feature = "symphonia-wav")))]
|
||||
#[cfg(feature = "wav")]
|
||||
#[error("Error seeking in wav source: {0}")]
|
||||
HoundDecoder(std::io::Error),
|
||||
#[error("An error occurred")]
|
||||
|
|
Loading…
Reference in a new issue