From 436dc9e59377acd6617d4cc2d11bd6122b4f3ca9 Mon Sep 17 00:00:00 2001 From: pablohc Date: Mon, 26 Jan 2026 14:42:50 +0100 Subject: [PATCH] style: fix Serial.printf formatting in Xtc.cpp --- lib/Xtc/Xtc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Xtc/Xtc.cpp b/lib/Xtc/Xtc.cpp index 2bf26bb4..b9217e26 100644 --- a/lib/Xtc/Xtc.cpp +++ b/lib/Xtc/Xtc.cpp @@ -331,8 +331,8 @@ bool Xtc::generateCoverHomeBmp() const { // Calculate proportional width for 400px height const uint16_t targetWidth = static_cast((HOME_TARGET_HEIGHT * pageInfo.width) / pageInfo.height); - Serial.printf("[%lu] [XTC] Generating home BMP: %dx%d -> %dx%d\n", millis(), pageInfo.width, - pageInfo.height, targetWidth, HOME_TARGET_HEIGHT); + Serial.printf("[%lu] [XTC] Generating home BMP: %dx%d -> %dx%d\n", millis(), pageInfo.width, pageInfo.height, + targetWidth, HOME_TARGET_HEIGHT); Serial.printf("[%lu] [XTC] Generating thumb BMP: %dx%d -> %dx%d (scale: %.3f)\n", millis(), pageInfo.width, pageInfo.height, targetWidth, HOME_TARGET_HEIGHT);