Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2021-07-30 13:53:35 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-07-30 13:53:35 +0300
commit052365ba1ade85dd10490cb156741226c66e6de5 (patch)
tree659856f3715b41ad27f6769db02c248065dde392 /text/regex
parent67f566dd287bf19c3e51a2f893dec5b70c27b6a1 (diff)
Fix various needless-borrow clippy warnings and others
Diffstat (limited to 'text/regex')
-rw-r--r--text/regex/src/gstregex/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/text/regex/src/gstregex/imp.rs b/text/regex/src/gstregex/imp.rs
index cd8fa66cb..46637aa2d 100644
--- a/text/regex/src/gstregex/imp.rs
+++ b/text/regex/src/gstregex/imp.rs
@@ -259,7 +259,7 @@ impl ObjectImpl for RegEx {
Operation::ReplaceAll(ref replacement) => {
commands.push(
gst::Structure::new(
- &"replace-all",
+ "replace-all",
&[("pattern", &command.pattern), ("replacement", &replacement)],
)
.to_send_value(),