uriplaylistbin: Remove unnecessary & to fix clippy warning

This commit is contained in:
Sebastian Dröge 2021-12-01 15:57:45 +02:00
parent 13923051a0
commit 423fa0d0a9

View file

@ -1263,7 +1263,7 @@ impl UriPlaylistBin {
// proxy sticky events
src.sticky_events_foreach(|event| {
use std::ops::ControlFlow;
let _ = ghost.store_sticky_event(&event);
let _ = ghost.store_sticky_event(event);
ControlFlow::Continue(gst::EventForeachAction::Keep)
});