From 8aa3e4417c36352d65a34dfd97c08eb5f80e6668 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 16 Jan 2023 11:30:56 +0200 Subject: [PATCH] gstreamer: Fix another typo in macro --- gstreamer/src/subclass/plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstreamer/src/subclass/plugin.rs b/gstreamer/src/subclass/plugin.rs index 247ae8c14..c5ef52321 100644 --- a/gstreamer/src/subclass/plugin.rs +++ b/gstreamer/src/subclass/plugin.rs @@ -118,7 +118,7 @@ macro_rules! plugin_define( if let Some(cause) = cause { $crate::error!($crate::CAT_PLUGIN_LOADING, "Failed to initialize plugin due to panic: {}", cause); } else { - $crate::error!(cat, "Failed to initialize plugin due to panic"); + $crate::error!($crate::CAT_PLUGIN_LOADING, "Failed to initialize plugin due to panic"); } $crate::glib::ffi::GFALSE