mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
v4l2: fix unportable printf format
This commit is contained in:
parent
9539f08ccb
commit
5290b514c8
1 changed files with 2 additions and 1 deletions
|
@ -597,7 +597,8 @@ std_failed:
|
||||||
gboolean
|
gboolean
|
||||||
gst_v4l2_set_norm (GstV4l2Object * v4l2object, v4l2_std_id norm)
|
gst_v4l2_set_norm (GstV4l2Object * v4l2object, v4l2_std_id norm)
|
||||||
{
|
{
|
||||||
GST_DEBUG_OBJECT (v4l2object->element, "trying to set norm to %llx", norm);
|
GST_DEBUG_OBJECT (v4l2object->element, "trying to set norm to "
|
||||||
|
"%" G_GINT64_MODIFIER "x", norm);
|
||||||
|
|
||||||
if (!GST_V4L2_IS_OPEN (v4l2object))
|
if (!GST_V4L2_IS_OPEN (v4l2object))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue