]> git.sesse.net Git - vlc/commitdiff
ALSA: int -> bool
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 30 Aug 2009 20:20:57 +0000 (23:20 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 30 Aug 2009 20:20:57 +0000 (23:20 +0300)
modules/audio_output/alsa.c

index fc05cf11feb657117a4b3708a1a564211e5409c7..a1d770dd3ffb681c02522b0c2d4ce7d04c086f6a 100644 (file)
@@ -62,7 +62,7 @@ struct aout_sys_t
     snd_output_t      * p_snd_stderr;
 #endif
 
-    int b_playing;                                         /* playing status */
+    bool b_playing;  /* playing status */
     mtime_t start_date;
 
     vlc_mutex_t lock;
@@ -687,7 +687,7 @@ static void Play( aout_instance_t *p_aout )
 {
     if( !p_aout->output.p_sys->b_playing )
     {
-        p_aout->output.p_sys->b_playing = 1;
+        p_aout->output.p_sys->b_playing = true;
 
         /* get the playing date of the first aout buffer */
         p_aout->output.p_sys->start_date =