]> git.sesse.net Git - vlc/commitdiff
Fix var type
authorSébastien Escudier <sebastien-devel@celeos.eu>
Fri, 27 Mar 2009 10:58:33 +0000 (11:58 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 29 Mar 2009 16:24:46 +0000 (18:24 +0200)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/demux/mjpeg.c

index f8127e677c232c4c9b729ff267767fcfe72b2faf..fa17147aa8a18fb9dfd46ac45518449d9be9f979 100644 (file)
@@ -302,7 +302,7 @@ static int Open( vlc_object_t * p_this )
     demux_t     *p_demux = (demux_t*)p_this;
     demux_sys_t *p_sys;
     int         i_size;
-    int         b_matched = false;
+    bool        b_matched = false;
     vlc_value_t val;
 
     p_demux->pf_control = Control;