Commit 4f4c9652 authored by Andreea-Cristina Bernat's avatar Andreea-Cristina Bernat Committed by Greg Kroah-Hartman
Browse files

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



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

Signed-off-by: default avatarAndreea-Cristina Bernat <bernat.ada@gmail.com>
Acked-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent eea7c703
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -62,7 +62,7 @@


/* debugging support */
/* debugging support */
#ifdef CONFIG_USB_DEBUG
#ifdef CONFIG_USB_DEBUG
static bool debug = 1;
static bool debug = true;
#else
#else
static bool debug;
static bool debug;
#endif
#endif