From 0c6fba9506660b3857c8857cbe690adff1ea84e4 Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Thu, 3 Sep 2009 20:40:17 +0200 Subject: v4l2: Fix stupid typo in last commit --- sys/v4l2/gstv4l2object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c index c9227d0c..cae86cef 100644 --- a/sys/v4l2/gstv4l2object.c +++ b/sys/v4l2/gstv4l2object.c @@ -724,7 +724,7 @@ gst_v4l2_object_format_get_rank (const struct v4l2_fmtdesc *fmt) { guint32 fourcc = fmt->pixelformat; #ifdef V4L2_FMT_FLAG_EMULATED - gboolean emulated = ((flags & V4L2_FMT_FLAG_EMULATED) != 0); + gboolean emulated = ((fmt->flags & V4L2_FMT_FLAG_EMULATED) != 0); #else gboolean emulated = FALSE; #endif -- cgit