]> git.sesse.net Git - vlc/blobdiff - src/video_output/video_output.c
module_need wants pointers and boolean so give NULL and false instead of 0.
[vlc] / src / video_output / video_output.c
index 8d5b2542ea547246786fdd0319e31b2ca287b933..42bfa9003ac86911266c7bb8953e838948794859 100644 (file)
@@ -1450,7 +1450,7 @@ static int ChromaCreate( vout_thread_t *p_vout )
     VideoFormatImportRgb( &p_chroma->fmt_in.video, &p_vout->render );
     VideoFormatImportRgb( &p_chroma->fmt_out.video, &p_vout->output );
 
-    p_chroma->p_module = module_need( p_chroma, "video filter2", NULL, 0 );
+    p_chroma->p_module = module_need( p_chroma, "video filter2", NULL, false );
 
     if( p_chroma->p_module == NULL )
     {