Staging: lirc: Fix warning: assignment of bool to 0/1

This patch solves the warning "Assignment of bool to 0/1"

Signed-off-by: Andreea-Cristina Bernat <bernat.ada@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Andreea-Cristina Bernat 2014-03-16 22:21:41 +02:00 committed by Greg Kroah-Hartman
parent eea7c7036e
commit 4f4c965212

View File

@ -62,7 +62,7 @@
/* debugging support */
#ifdef CONFIG_USB_DEBUG
static bool debug = 1;
static bool debug = true;
#else
static bool debug;
#endif