Fix compile issues on windows (#3491)

This commit is contained in:
Jesse Hills
2022-05-19 21:21:42 +12:00
committed by GitHub
parent dda1ddcb26
commit d9d2edeb08
2 changed files with 2 additions and 3 deletions
@@ -20,7 +20,7 @@ void TuyaTextSensor::setup() {
break;
}
default:
ESP_LOGW(TAG, "Unsupported data type for tuya text sensor %u: %#02hhX", datapoint.id, datapoint.type);
ESP_LOGW(TAG, "Unsupported data type for tuya text sensor %u: %#02hhX", datapoint.id, (uint8_t) datapoint.type);
break;
}
});