Skip to content

Commit 777b561

Browse files
committed
Make white space consistent
1 parent 3beefd9 commit 777b561

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

HttpClient.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -375,11 +375,11 @@ int HttpClient::read()
375375
if (ret >= 0)
376376
{
377377
if (endOfHeadersReached() && iContentLength > 0)
378-
{
378+
{
379379
// We're outputting the body now and we've seen a Content-Length header
380380
// So keep track of how many bytes are left
381381
iBodyLengthConsumed++;
382-
}
382+
}
383383
}
384384
return ret;
385385
#endif
@@ -393,9 +393,9 @@ int HttpClient::read(uint8_t *buf, size_t size)
393393
// We're outputting the body now and we've seen a Content-Length header
394394
// So keep track of how many bytes are left
395395
if (ret >= 0)
396-
{
396+
{
397397
iBodyLengthConsumed += ret;
398-
}
398+
}
399399
}
400400
return ret;
401401
}

0 commit comments

Comments
 (0)