[sun_gtil2] clang-tidy fixes for #7822 (#7858)

This commit is contained in:
Keith Burzinski
2024-11-26 11:00:03 +01:00
committed by GitHub
parent 31c13e4c16
commit bdc6302ea1
+1 -1
View File
@@ -83,7 +83,7 @@ void SunGTIL2::handle_char_(uint8_t c) {
memcpy(&msg, this->rx_message_.data(), MESSAGE_SIZE);
this->rx_message_.clear();
if (!((msg.end[0] == 0) && (msg.end[38] == 0x08)))
if ((msg.end[0] != 0) || (msg.end[38] != 0x08))
return;
ESP_LOGVV(TAG, "Frequency raw value: %02x", msg.frequency);