diff mbox series

[23/25] hw/bt: Remove init of static variable to false

Message ID 20170905055202.8216-24-joel@jms.id.au
State Accepted
Headers show
Series Checkpatch fixes | expand

Commit Message

Joel Stanley Sept. 5, 2017, 5:52 a.m. UTC
Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 hw/bt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/hw/bt.c b/hw/bt.c
index ff1aa48276b5..2f0726a8fca0 100644
--- a/hw/bt.c
+++ b/hw/bt.c
@@ -413,7 +413,7 @@  static void print_debug_queue_info(void)
 {
 #if BT_QUEUE_DEBUG
 	struct bt_msg *msg;
-	static bool printed = false;
+	static bool printed;
 
 	if (!list_empty(&bt.msgq)) {
 		printed = false;