1
0
mirror of https://github.com/esphome/esphome.git synced 2025-01-31 10:10:56 +00:00

fix build error (#7229)

This commit is contained in:
tomaszduda23 2024-08-12 06:49:35 +02:00 committed by GitHub
parent 82c5cd18de
commit 8a076cc906
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
} }
} }