mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
v4l2: printf format string fix
The compiler wants a cast here even though the type is already typedefed as 64-bit integer (presumably because glib has typedefed guint64 to unsigned long here).
This commit is contained in:
parent
0233257612
commit
2baa107562
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ gboolean
|
|||
gst_v4l2_set_norm (GstV4l2Object * v4l2object, v4l2_std_id norm)
|
||||
{
|
||||
GST_DEBUG_OBJECT (v4l2object->element, "trying to set norm to "
|
||||
"%" G_GINT64_MODIFIER "x", norm);
|
||||
"%" G_GINT64_MODIFIER "x", (guint64) norm);
|
||||
|
||||
if (!GST_V4L2_IS_OPEN (v4l2object))
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue