Fix format string error in waveshare_epaper.cpp (#9322)

Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
tmpeh 2025-07-08 06:39:07 +02:00 committed by GitHub
parent a30f01d668
commit 3f8b691c32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3132,7 +3132,7 @@ void HOT GDEY0583T81::display() {
} else {
// Partial out (PTOUT), makes the display exit partial mode
this->command(0x92);
ESP_LOGD(TAG, "Partial update done, next full update after %d cycles",
ESP_LOGD(TAG, "Partial update done, next full update after %" PRIu32 " cycles",
this->full_update_every_ - this->at_update_ - 1);
}