From 9624d7b429e1aaf390e78e512fc65fcd803e2c78 Mon Sep 17 00:00:00 2001 From: Mark Thompson <129641948+NotherNgineer@users.noreply.github.com> Date: Sun, 3 Dec 2023 01:19:04 -0600 Subject: [PATCH] Fix compiler warning (#1620) --- firmware/application/apps/ble_tx_app.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/firmware/application/apps/ble_tx_app.cpp b/firmware/application/apps/ble_tx_app.cpp index a75067d9..b226bfdd 100644 --- a/firmware/application/apps/ble_tx_app.cpp +++ b/firmware/application/apps/ble_tx_app.cpp @@ -218,6 +218,7 @@ void BLETxView::start() { hexDigit = min + std::rand() % (max - min + 1); } break; default: + hexDigit = 0; break; }