From: RĂ©mi Denis-Courmont Date: Sun, 30 Aug 2009 20:20:57 +0000 (+0300) Subject: ALSA: int -> bool X-Git-Tag: 1.1.0-ff~3705 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=068f36829df1a3647cc183119acac49e0dafbd02;p=vlc ALSA: int -> bool --- diff --git a/modules/audio_output/alsa.c b/modules/audio_output/alsa.c index fc05cf11fe..a1d770dd3f 100644 --- a/modules/audio_output/alsa.c +++ b/modules/audio_output/alsa.c @@ -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 =