From cdcf2c20b4b0473310275015d3fb5b867baf7ae0 Mon Sep 17 00:00:00 2001 From: KlausMu Date: Sat, 2 Nov 2024 16:29:48 +0100 Subject: [PATCH] changed u_int8_t to uint8_t --- Platformio/src/guis/gui_BLEpairing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platformio/src/guis/gui_BLEpairing.cpp b/Platformio/src/guis/gui_BLEpairing.cpp index 5fb68caa..735819a3 100644 --- a/Platformio/src/guis/gui_BLEpairing.cpp +++ b/Platformio/src/guis/gui_BLEpairing.cpp @@ -138,7 +138,7 @@ static void BLEpairing_dropdown_cb(lv_event_t* e) { uint16_t selected_index = lv_dropdown_get_selected(target); if (lv_event_get_code(e) == LV_EVENT_VALUE_CHANGED) { // omote_log_d("BLE pairing: bonded peers dropdown selected index %d\r\n", selected_index); - u_int8_t bufferSize = 20; + uint8_t bufferSize = 20; char buffer[bufferSize]; lv_dropdown_get_selected_str(target, buffer, bufferSize); // omote_log_d("BLE pairing: bonded peers dropdown selected value %s\r\n", buffer);