Skip to content

Commit

Permalink
added missing newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
g3gg0 committed Oct 15, 2023
1 parent 12a3c7d commit 824b6e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handler_cloud.c
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ error_t handleCloudContentV2(HttpConnection *connection, const char_t *uri, cons
}
else
{
TRACE_WARNING("Missing auth for content v2: %s", uri);
TRACE_WARNING("Missing auth for content v2: %s\r\n", uri);
}
return NO_ERROR;
}
Expand Down Expand Up @@ -551,7 +551,7 @@ error_t handleCloudFreshnessCheck(HttpConnection *connection, const char_t *uri,

if (BODY_BUFFER_SIZE <= connection->request.byteCount)
{
TRACE_ERROR("Body size %zu bigger than buffer size %i bytes", connection->request.byteCount, BODY_BUFFER_SIZE);
TRACE_ERROR("Body size %zu bigger than buffer size %i bytes\r\n", connection->request.byteCount, BODY_BUFFER_SIZE);
}
else
{
Expand Down

0 comments on commit 824b6e1

Please sign in to comment.