From a4d167f9ec557f6d4e7228a15759922ce4df8015 Mon Sep 17 00:00:00 2001 From: dvdsk Date: Sat, 6 Apr 2024 12:07:31 +0200 Subject: [PATCH] fix(seek) conditional compilation --- src/source/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/source/mod.rs b/src/source/mod.rs index 901ec9b..bec9a72 100644 --- a/src/source/mod.rs +++ b/src/source/mod.rs @@ -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")]