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

@@ -138,7 +138,7 @@ bool WebApiClass::sendJsonResponse(AsyncWebServerRequest* request, AsyncJsonResp
root["code"] = WebApiError::GenericInternalServerError;
root["type"] = "danger";
response->setCode(500);
MessageOutput.printf("WebResponse failed: %s, %" PRId16 "\r\n", function, line);
MessageOutput.printf("WebResponse failed: %s, %" PRIu16 "\r\n", function, line);
ret_val = false;
}