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

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Laignel <fengalin@free.fr>2022-10-23 21:46:18 +0300
committerFrançois Laignel <fengalin@free.fr>2022-10-23 22:22:31 +0300
commit86776be58c5d7e8607653edcd719ac1f0ba8d992 (patch)
tree64deeda8be7e7b4850157a1e306425f1ce8f965d /audio/audiofx
parentfe8e0a8bf8cdb67d913318f63b621370c45aedda (diff)
Remove `&` for `obj` in log macros
This is no longer necessary. See https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1137
Diffstat (limited to 'audio/audiofx')
-rw-r--r--audio/audiofx/src/ebur128level/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/audiofx/src/ebur128level/imp.rs b/audio/audiofx/src/ebur128level/imp.rs
index 1afb5f2a..c8b1f115 100644
--- a/audio/audiofx/src/ebur128level/imp.rs
+++ b/audio/audiofx/src/ebur128level/imp.rs
@@ -130,7 +130,7 @@ impl ObjectImpl for EbuR128Level {
let this = args[0].get::<super::EbuR128Level>().unwrap();
let imp = this.imp();
- gst::info!(CAT, obj: &this, "Resetting measurements",);
+ gst::info!(CAT, obj: this, "Resetting measurements",);
imp.reset.store(true, atomic::Ordering::SeqCst);
None