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
path: root/net
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2023-10-22 01:19:27 +0300
committerJordan Petridis <jordan@centricular.com>2023-10-22 01:20:56 +0300
commita2d7f421387b0d4bc1be33c5cd16190c00ba2fba (patch)
tree2dac085c5cd927d8ee3973dc0075677e601bf742 /net
parent895ee1d00b09eb62cd3cb2c056236599e0f7ca92 (diff)
Fix compilation after glib bindings changes
loggable_error! can now expand variables and we no longer need the format! on our side. https://github.com/gtk-rs/gtk-rs-core/pull/1210 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1366>
Diffstat (limited to 'net')
-rw-r--r--net/aws/src/transcriber/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/aws/src/transcriber/imp.rs b/net/aws/src/transcriber/imp.rs
index 066dcaebf..283d6903f 100644
--- a/net/aws/src/transcriber/imp.rs
+++ b/net/aws/src/transcriber/imp.rs
@@ -1581,7 +1581,7 @@ impl TranslateSrcPad {
let elem = self.parent();
let _enter = RUNTIME.enter();
let mut pad_task = futures::executor::block_on(TranslationPadTask::try_new(self, elem))
- .map_err(|err| gst::loggable_error!(CAT, format!("Failed to start pad task {err}")))?;
+ .map_err(|err| gst::loggable_error!(CAT, "Failed to start pad task {err}"))?;
let imp = self.ref_counted();
let res = self.obj().start_task(move || {