diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2010-02-15 12:12:36 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2010-02-15 12:13:43 +0000 |
commit | 2baa107562dec16531ccdf5e07c8910437b6bfd8 (patch) | |
tree | 35574796524f9706b222ff3235ffe7ada503ef4b /sys/v4l2/v4l2_calls.c | |
parent | 0233257612305a831c390e45e49dfd8f9d25fae9 (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).
Diffstat (limited to 'sys/v4l2/v4l2_calls.c')
-rw-r--r-- | sys/v4l2/v4l2_calls.c | 2 |
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; |