From a3c057a5e9d53cbb27810e5d30aba8a52e89e4e2 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 10 Nov 2016 09:56:48 +0200 Subject: [PATCH] Bluetooth: samples/hci_uart: Remove redundant semicolon Remove redundant semicolon from the end of a while loop. Change-Id: I02cef7879efe0d6eeae59595e14fb1d9b00a6d52 Signed-off-by: Johan Hedberg --- samples/bluetooth/hci_uart/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/bluetooth/hci_uart/src/main.c b/samples/bluetooth/hci_uart/src/main.c index e6a92187d62..160c131a5f6 100644 --- a/samples/bluetooth/hci_uart/src/main.c +++ b/samples/bluetooth/hci_uart/src/main.c @@ -326,7 +326,7 @@ void bt_controller_assert_handle(char *file, uint32_t line) uart_poll_out(hci_uart_dev, line >> 24 & 0xff); while (1) { - }; + } } #endif /* CONFIG_BLUETOOTH_CONTROLLER_ASSERT_HANDLER */