formatting, lint

This commit is contained in:
John
2024-10-01 06:44:52 +02:00
parent 441a3f6457
commit 5d8c9735d2
12 changed files with 31 additions and 22 deletions
+1 -1
View File
@@ -616,7 +616,7 @@ void EnhancedDevice::notifyInfoRetrieved() {
case 0x0107:
stream << "rssi ";
if (data[0]) {
stream << static_cast<signed>(((int8_t*)data)[0]) << " dBm";
stream << static_cast<signed>(reinterpret_cast<int8_t*>(data)[0]) << " dBm";
} else {
stream << "unknown";
}