fix some clippy warnings
[nihav.git] / nihav-vivo / src / codecs / vivo.rs
index 64af5ffae9833396c07a162877c8043cc04eb982..2e73b3bd9635734a1b111107db23f5b4cc7f43f9 100644 (file)
@@ -272,7 +272,7 @@ struct VivoBR<'a> {
     aic:    bool,
 }
 
-fn check_marker<'a>(br: &mut BitReader<'a>) -> DecoderResult<()> {
+fn check_marker(br: &mut BitReader) -> DecoderResult<()> {
     let mark = br.read(1)?;
     validate!(mark == 1);
     Ok(())