diff options
Diffstat (limited to 'net/http/http_chunked_decoder.h')
-rw-r--r-- | net/http/http_chunked_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_chunked_decoder.h b/net/http/http_chunked_decoder.h index 0e41bb1..1eb3ea0 100644 --- a/net/http/http_chunked_decoder.h +++ b/net/http/http_chunked_decoder.h @@ -92,7 +92,7 @@ class HttpChunkedDecoder { // Convert string |start| of length |len| to a numeric value. // |start| is a string of type "chunk-size" (hex string). // If the conversion succeeds, return true and place the result in |out|. - static bool ParseChunkSize(const char* start, int len, int* out); + static bool ParseChunkSize(const char* start, int len, int* out); // Indicates the number of bytes remaining for the current chunk. int chunk_remaining_; |