summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-02-15 12:12:36 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-02-15 12:13:43 +0000
commit2baa107562dec16531ccdf5e07c8910437b6bfd8 (patch)
tree35574796524f9706b222ff3235ffe7ada503ef4b
parent0233257612305a831c390e45e49dfd8f9d25fae9 (diff)
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).
-rw-r--r--sys/v4l2/v4l2_calls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/v4l2/v4l2_calls.c b/sys/v4l2/v4l2_calls.c
index 1cdbacf44..f2c2c081d 100644
--- a/sys/v4l2/v4l2_calls.c
+++ b/sys/v4l2/v4l2_calls.c
@@ -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;