Use the right format string on a lot of locations

This helps for a future support of arduino framework 3
This commit is contained in:
Thomas Basler
2025-04-09 18:33:47 +02:00
parent 80fb8c70f5
commit 7e056ad3f9
13 changed files with 28 additions and 28 deletions

View File

@@ -61,7 +61,7 @@ int Utils::getTimezoneOffset()
bool Utils::checkJsonAlloc(const JsonDocument& doc, const char* function, const uint16_t line)
{
if (doc.overflowed()) {
MessageOutput.printf("Alloc failed: %s, %" PRId16 "\r\n", function, line);
MessageOutput.printf("Alloc failed: %s, %" PRIu16 "\r\n", function, line);
return false;
}