mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2026-03-27 19:37:03 +01:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user