mirror of
https://github.com/esphome/esphome.git
synced 2025-01-12 07:33:19 +01:00
fix printf type
This commit is contained in:
parent
171213fe38
commit
ca55ed7b4b
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ Watchdog::Watchdog(u_int32_t timeout_s) {
|
|||
this->timeout_s_ = timeout_s;
|
||||
this->start_time_ms_ = millis();
|
||||
this->set_wdt_(timeout_s);
|
||||
ESP_LOGV(TAG, "Watchog timeout init: %ds", timeout_s);
|
||||
ESP_LOGV(TAG, "Watchog timeout init: %" PRIu32 "s", timeout_s);
|
||||
}
|
||||
|
||||
Watchdog::~Watchdog() {
|
||||
|
|
Loading…
Reference in a new issue