| Index: net/tools/balsa/balsa_headers.h
|
| diff --git a/net/tools/balsa/balsa_headers.h b/net/tools/balsa/balsa_headers.h
|
| index 47cf388b8aba85e2bc382dff4bf6d58a325826e8..840aae5e72e46398196d47fd35fc40ccf6ea3ef5 100644
|
| --- a/net/tools/balsa/balsa_headers.h
|
| +++ b/net/tools/balsa/balsa_headers.h
|
| @@ -938,7 +938,7 @@ class BalsaHeaders {
|
| return transfer_encoding_is_chunked_;
|
| }
|
|
|
| - static bool ResponseCodeImpliesNoBody(int code) {
|
| + static bool ResponseCodeImpliesNoBody(size_t code) {
|
| // From HTTP spec section 6.1.1 all 1xx responses must not have a body,
|
| // as well as 204 No Content and 304 Not Modified.
|
| return ((code >= 100) && (code <= 199)) || (code == 204) || (code == 304);
|
|
|