Skip to content

Commit a7790b2

Browse files
committed
uncrustify
1 parent f228bdd commit a7790b2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

source/core_http_client.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,20 +1389,20 @@ static HTTPStatus_t addHeader( HTTPRequestHeaders_t * pRequestHeaders,
13891389

13901390
/* Copy the field separator, ": ", into the buffer. */
13911391
outBytesWritten += copyCharsUntilNull( &pBufferStart[ outBytesWritten ],
1392-
HTTP_HEADER_FIELD_SEPARATOR,
1393-
HTTP_HEADER_FIELD_SEPARATOR_LEN );
1392+
HTTP_HEADER_FIELD_SEPARATOR,
1393+
HTTP_HEADER_FIELD_SEPARATOR_LEN );
13941394

13951395

13961396
/* Copy the header value into the buffer. */
13971397
outBytesWritten += httpHeaderCpy( &pBufferStart[ outBytesWritten ],
1398-
pValue,
1399-
valueLen,
1400-
HTTP_HEADER_STRNCPY_IS_VALUE );
1398+
pValue,
1399+
valueLen,
1400+
HTTP_HEADER_STRNCPY_IS_VALUE );
14011401

14021402
/* Copy the header end indicator, "\r\n\r\n" into the buffer. */
14031403
outBytesWritten += copyCharsUntilNull( &pBufferStart[ outBytesWritten ],
1404-
HTTP_HEADER_END_INDICATOR,
1405-
HTTP_HEADER_END_INDICATOR_LEN );
1404+
HTTP_HEADER_END_INDICATOR,
1405+
HTTP_HEADER_END_INDICATOR_LEN );
14061406

14071407
if( outBytesWritten == toAddLen )
14081408
{

0 commit comments

Comments
 (0)