mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
v4l2: fix printf format compiler warning in debug message
This commit is contained in:
parent
00b46b4744
commit
60302a57a4
1 changed files with 2 additions and 1 deletions
|
@ -145,7 +145,8 @@ gst_v4l2_fill_lists (GstV4l2Object * v4l2object)
|
|||
GST_LOG_OBJECT (e, " name: '%s'", input.name);
|
||||
GST_LOG_OBJECT (e, " type: %08x", input.type);
|
||||
GST_LOG_OBJECT (e, " audioset: %08x", input.audioset);
|
||||
GST_LOG_OBJECT (e, " std: %016" G_GINT64_MODIFIER "x", input.std);
|
||||
GST_LOG_OBJECT (e, " std: %016" G_GINT64_MODIFIER "x",
|
||||
(guint64) input.std);
|
||||
GST_LOG_OBJECT (e, " status: %08x", input.status);
|
||||
|
||||
v4l2channel = g_object_new (GST_TYPE_V4L2_TUNER_CHANNEL, NULL);
|
||||
|
|
Loading…
Reference in a new issue