summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2004-05-17 16:58:24 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2004-05-17 16:58:24 +0000
commitf0b81fa053f978bf45ca63135c98e32f1be72679 (patch)
tree025bd8fecc33fdb7a56eb9e187d8c6c447279129 /configure.ac
parentaee86873bc8c5c8843a1fd7a9880fb4f2bd5f69c (diff)
configure.ac: fix compilation of v4l2src with "-Wall -Werror" fixes #142664
Original commit message from CVS: * configure.ac : fix compilation of v4l2src with "-Wall -Werror" fixes #142664
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index fb968f2d..e9ba3715 100644
--- a/configure.ac
+++ b/configure.ac
@@ -645,6 +645,7 @@ return 0;
#include <linux/videodev2.h>
],[
struct v4l2_buffer buf;
+buf.index = 0;
return 0;
], [ AC_MSG_RESULT(yes) ], [ MISSING_DECL=1 && AC_MSG_RESULT(no) ])
if [ test x$MISSING_DECL = x1 ]; then