From a2c16ec6324ca15471fff9bed1185ee6ffb8cdf6 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Wed, 21 Apr 2021 18:41:08 +0100 Subject: [PATCH] v4l2: Fix glib warning emitted when attribute query fails The v4l2object is not a GstObject. Logging has to go through its dbg_obj specially meant for this. Part-of: --- sys/v4l2/v4l2_calls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/v4l2/v4l2_calls.c b/sys/v4l2/v4l2_calls.c index 299eab0..6afdefb 100644 --- a/sys/v4l2/v4l2_calls.c +++ b/sys/v4l2/v4l2_calls.c @@ -926,7 +926,7 @@ gst_v4l2_get_attribute (GstV4l2Object * v4l2object, /* ERRORS */ ctrl_failed: { - GST_WARNING_OBJECT (v4l2object, + GST_WARNING_OBJECT (v4l2object->dbg_obj, _("Failed to get value for control %d on device '%s'."), attribute_num, v4l2object->videodev); return FALSE; -- 2.7.4