fix(audio): suppress unused variable warning in DecodeError match arm

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Psychotoxical
2026-04-10 00:15:55 +02:00
parent 22f7de45e8
commit f304589ea1
+1 -1
View File
@@ -1149,7 +1149,7 @@ impl Iterator for SizedDecoder {
self.current_frame_offset = 0;
break;
}
Err(symphonia::core::errors::Error::DecodeError(ref msg)) => {
Err(symphonia::core::errors::Error::DecodeError(ref _msg)) => {
self.consecutive_decode_errors += 1;
// Log sparingly: first drop, then every 10th to avoid spam.
#[cfg(debug_assertions)]