diff options
author | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-11 16:55:01 +0000 |
---|---|---|
committer | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-11 16:55:01 +0000 |
commit | b75c5d19084dfa4cafb6fdb6ffd715bca09e9123 (patch) | |
tree | 5dea683f124bec9c34e30a2ab7324bc97ed86631 /net/http/http_chunked_decoder.cc | |
parent | 1b2d1bb6e8acca107f19d7e7b26492ad5e033f3e (diff) | |
download | chromium_src-b75c5d19084dfa4cafb6fdb6ffd715bca09e9123.zip chromium_src-b75c5d19084dfa4cafb6fdb6ffd715bca09e9123.tar.gz chromium_src-b75c5d19084dfa4cafb6fdb6ffd715bca09e9123.tar.bz2 |
Declare the bool members next to each other so they can
be packed.
Fix indentation.
R=eroman
Review URL: http://codereview.chromium.org/1926
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2064 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_chunked_decoder.cc')
-rw-r--r-- | net/http/http_chunked_decoder.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_chunked_decoder.cc b/net/http/http_chunked_decoder.cc index 43dc71f..1ecb9f4 100644 --- a/net/http/http_chunked_decoder.cc +++ b/net/http/http_chunked_decoder.cc @@ -126,8 +126,8 @@ int HttpChunkedDecoder::ScanForChunkRemaining(const char* buf, int buf_len) { buf_len = static_cast<int>(index_of_semicolon); if (!ParseChunkSize(buf, buf_len, &chunk_remaining_)) { - DLOG(ERROR) << "Failed parsing HEX from: " << - std::string(buf, buf_len); + DLOG(ERROR) << "Failed parsing HEX from: " << + std::string(buf, buf_len); return ERR_INVALID_CHUNKED_ENCODING; } |