mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
fix build error (#7229)
This commit is contained in:
parent
82c5cd18de
commit
8a076cc906
1 changed files with 1 additions and 1 deletions
|
@ -1336,7 +1336,7 @@ void APIConnection::update_command(const UpdateCommandRequest &msg) {
|
||||||
update->check();
|
update->check();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ESP_LOGW(TAG, "Unknown update command: %d", msg.command);
|
ESP_LOGW(TAG, "Unknown update command: %" PRIu32, msg.command);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue