From 46cb1595c054342d835e1117b00347d303af46ea Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Thu, 7 Jan 2021 20:08:36 +0100 Subject: [PATCH] gstreamer/tags: Fix redundant_semicolons lint warning --- gstreamer/src/tags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstreamer/src/tags.rs b/gstreamer/src/tags.rs index 62463a96e..7995404f6 100644 --- a/gstreamer/src/tags.rs +++ b/gstreamer/src/tags.rs @@ -1063,7 +1063,7 @@ mod tests { fn test_custom_tags() { crate::init().unwrap(); - enum MyCustomTag {}; + enum MyCustomTag {} impl<'a> Tag<'a> for MyCustomTag { type TagType = &'a str;