]> git.sesse.net Git - vlc/blobdiff - src/audio_output/output.c
module_need wants pointers and boolean so give NULL and false instead of 0.
[vlc] / src / audio_output / output.c
index 41494d2ae03aa44128434b8a22d52613a73a70cd..0b0ebfa5071636bb13377e61d7746d10c12ec049 100644 (file)
@@ -54,7 +54,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
     aout_lock_output_fifo( p_aout );
 
     /* Find the best output plug-in. */
-    p_aout->output.p_module = module_need( p_aout, "audio output", "$aout", 0);
+    p_aout->output.p_module = module_need( p_aout, "audio output", "$aout", false );
     if ( p_aout->output.p_module == NULL )
     {
         msg_Err( p_aout, "no suitable audio output module" );