chore(fix): clang-format fix

This commit is contained in:
Eunchurn Park 2025-12-27 15:46:22 +09:00
parent d3848779f9
commit 11a059f39a
No known key found for this signature in database
GPG Key ID: 29D94D9C697E3F92

View File

@ -75,8 +75,8 @@ std::unique_ptr<TextBlock> TextBlock::deserialize(File& file) {
// Validate data consistency: all three lists must have the same size // Validate data consistency: all three lists must have the same size
if (wc != xc || wc != sc) { if (wc != xc || wc != sc) {
Serial.printf("[%lu] [TXB] Deserialization failed: size mismatch (words=%u, xpos=%u, styles=%u)\n", millis(), wc, xc, Serial.printf("[%lu] [TXB] Deserialization failed: size mismatch (words=%u, xpos=%u, styles=%u)\n", millis(), wc,
sc); xc, sc);
return nullptr; return nullptr;
} }