diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/base/net_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/net_util.cc b/net/base/net_util.cc index 4e7fab7..1bfb6e9 100644 --- a/net/base/net_util.cc +++ b/net/base/net_util.cc @@ -173,7 +173,7 @@ STR GetSpecificHeaderT(const STR& headers, const STR& name) { // TODO(jungshik): We have almost identical hex-decoding code else where. // Consider refactoring and moving it somewhere(base?). Bug 1224311 inline bool IsHexDigit(unsigned char c) { - return ('0' <= c && c <= '9' || 'A' <= c && c <= 'F' || 'a' <= c && c <= 'f'); + return (('0' <= c && c <= '9') || ('A' <= c && c <= 'F') || ('a' <= c && c <= 'f')); } inline unsigned char HexToInt(unsigned char c) { |