From 777b561cc539983d7b84903237e53c8527e47fbe Mon Sep 17 00:00:00 2001 From: Sandeep Mistry Date: Fri, 17 Jun 2016 11:09:14 -0400 Subject: [PATCH] Make white space consistent --- HttpClient.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/HttpClient.cpp b/HttpClient.cpp index 0cbf083..65099e1 100644 --- a/HttpClient.cpp +++ b/HttpClient.cpp @@ -375,11 +375,11 @@ int HttpClient::read() if (ret >= 0) { if (endOfHeadersReached() && iContentLength > 0) - { + { // We're outputting the body now and we've seen a Content-Length header // So keep track of how many bytes are left iBodyLengthConsumed++; - } + } } return ret; #endif @@ -393,9 +393,9 @@ int HttpClient::read(uint8_t *buf, size_t size) // We're outputting the body now and we've seen a Content-Length header // So keep track of how many bytes are left if (ret >= 0) - { + { iBodyLengthConsumed += ret; - } + } } return ret; }