[vlc-commits] V4L2: build fix
    Pierre Ynard 
    git at videolan.org
       
    Sun Oct  2 01:25:41 CEST 2011
    
    
  
vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Sun Oct  2 01:25:12 2011 +0200| [f2ef4612a5e884ab8244c77537770c11c0cc4d1a] | committer: Pierre Ynard
V4L2: build fix
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f2ef4612a5e884ab8244c77537770c11c0cc4d1a
---
 modules/access/v4l2/controls.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/access/v4l2/controls.c b/modules/access/v4l2/controls.c
index ad30f24..9d4ad2a 100644
--- a/modules/access/v4l2/controls.c
+++ b/modules/access/v4l2/controls.c
@@ -80,7 +80,7 @@ static const vlc_v4l2_ctrl_name_t controls[] =
         <= (V4L2_CID_VCENTER - V4L2_CID_BRIGHTNESS))
 };
 
-typedef struct vlc_v4l2_ctrl
+struct vlc_v4l2_ctrl
 {
     int                   fd;
     uint32_t              id;
@@ -88,7 +88,7 @@ typedef struct vlc_v4l2_ctrl
     char                  name[32];
     int32_t               default_value;
     struct vlc_v4l2_ctrl *next;
-} vlc_v4l2_ctrl_t;
+};
 
 static int ControlSet (const vlc_v4l2_ctrl_t *c, int_fast32_t value)
 {
    
    
More information about the vlc-commits
mailing list