From 8c0b9ed770c8a4f723f221d08ba290fca8b7a3e1 Mon Sep 17 00:00:00 2001 From: Xavier Chapron Date: Tue, 12 Dec 2023 12:24:48 +0100 Subject: [PATCH] src: Cleanup unused parameter from BLE_power() --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 3717d8d8..c3ed0755 100644 --- a/src/main.c +++ b/src/main.c @@ -210,7 +210,7 @@ void coin_main(void) { #ifdef HAVE_BLE BLE_power(0, NULL); - BLE_power(1, "Nano X"); + BLE_power(1, NULL); #endif // HAVE_BLE app_main(); @@ -247,7 +247,7 @@ static void start_app_from_lib(void) { // grab the current plane mode setting G_io_app.plane_mode = os_setting_get(OS_SETTING_PLANEMODE, NULL, 0); BLE_power(0, NULL); - BLE_power(1, "Nano X"); + BLE_power(1, NULL); #endif // HAVE_BLE app_main(); }