]> git.sesse.net Git - vlc/blobdiff - src/libvlc.c
module_need wants pointers and boolean so give NULL and false instead of 0.
[vlc] / src / libvlc.c
index f085509183143e89062601670ec92be13863aa2d..45fa3a0e5e1a0d08030bce4439d4e5af6793f1d8 100644 (file)
@@ -788,7 +788,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
     /*
      * Choose the best memcpy module
      */
-    priv->p_memcpy_module = module_need( p_libvlc, "memcpy", "$memcpy", 0 );
+    priv->p_memcpy_module = module_need( p_libvlc, "memcpy", "$memcpy", false );
 
     priv->b_stats = config_GetInt( p_libvlc, "stats" ) > 0;
     priv->i_timers = 0;