Commit d1598d4e authored by Samuel Thibault's avatar Samuel Thibault Committed by Greg Kroah-Hartman
Browse files

staging: speakup: use true/false instead of 1/0

parent 7ca399f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ void synth_buffer_add(u16 ch)
	/* We have written something to the speech synthesis, so we are not
	 * paused any more.
	 */
	spk_paused = 0;
	spk_paused = false;
}

u16 synth_buffer_getc(void)
+1 −1
Original line number Diff line number Diff line
@@ -1786,7 +1786,7 @@ static void speakup_con_update(struct vc_data *vc)
	speakup_date(vc);
	if (vc->vc_mode == KD_GRAPHICS && !spk_paused && spk_str_pause[0]) {
		synth_printf("%s", spk_str_pause);
		spk_paused = 1;
		spk_paused = true;
	}
	spin_unlock_irqrestore(&speakup_info.spinlock, flags);
}