fix some warnings (unneeded parentheses, missing dyn keyword)
[nihav.git] / nihav-duck / src / codecs / vp5.rs
index 70c26c6fa77d57f734abb21edb59839f3d0da9c2..48fda2d3b74b87fa1eaa17df5a6b6c054825cdff 100644 (file)
@@ -284,7 +284,7 @@ impl NAOptionHandler for VP5Decoder {
     fn query_option_value(&self, _name: &str) -> Option<NAValue> { None }
 }
 
-pub fn get_decoder() -> Box<NADecoder + Send> {
+pub fn get_decoder() -> Box<dyn NADecoder + Send> {
     Box::new(VP5Decoder::new())
 }