]> git.sesse.net Git - vlc/blobdiff - src/misc/xml.c
module_need wants pointers and boolean so give NULL and false instead of 0.
[vlc] / src / misc / xml.c
index ba6b75c3da608f1513b21c608a343eb180879ad9..e5c73ab671f7c7afa8d149c18702e793c05e1755 100644 (file)
@@ -43,7 +43,7 @@ xml_t *__xml_Create( vlc_object_t *p_this )
                                "xml" );
     vlc_object_attach( p_xml, p_this );
 
-    p_xml->p_module = module_need( p_xml, "xml", 0, 0 );
+    p_xml->p_module = module_need( p_xml, "xml", NULL, false );
     if( !p_xml->p_module )
     {
         vlc_object_detach( p_xml );