1
0
mirror of https://github.com/esphome/esphome.git synced 2025-06-15 06:46:59 +02:00

[application] Fix build error on some IDF versions (#9045)

This commit is contained in:
Keith Burzinski 2025-06-11 04:44:49 -05:00 committed by GitHub
parent 69f2c79ccb
commit 9652b1a556
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -226,7 +226,8 @@ void Application::teardown_components(uint32_t timeout_ms) {
// Note: At this point, connections are either disconnected or in a bad state,
// so this warning will only appear via serial rather than being transmitted to clients
for (auto *component : pending_components) {
ESP_LOGW(TAG, "%s did not complete teardown within %u ms", component->get_component_source(), timeout_ms);
ESP_LOGW(TAG, "%s did not complete teardown within %" PRIu32 " ms", component->get_component_source(),
timeout_ms);
}
}
}