From 6bb9eaf7397e5ae534e0f54c722c8f5353acbf5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 26 Oct 2017 12:56:52 +0200 Subject: [PATCH] Remove unneeded reference --- tutorials/src/bin/basic-tutorial-5.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/src/bin/basic-tutorial-5.rs b/tutorials/src/bin/basic-tutorial-5.rs index 64b482f04..301b809c9 100644 --- a/tutorials/src/bin/basic-tutorial-5.rs +++ b/tutorials/src/bin/basic-tutorial-5.rs @@ -69,7 +69,7 @@ mod tutorial5 { fn analyze_streams(playbin: &gst::Element, textbufcell: &SendCell) { { let textbuf = textbufcell.borrow(); - textbuf.set_text(&""); + textbuf.set_text(""); } add_streams_info(playbin, textbufcell, "video");