| Index: src/scanner.cc
|
| diff --git a/src/scanner.cc b/src/scanner.cc
|
| index 944613081c012dfd14d52f39885151951ea62ca8..de799033b92206f2d9296fe78f81088e878cdc36 100644
|
| --- a/src/scanner.cc
|
| +++ b/src/scanner.cc
|
| @@ -1579,7 +1579,7 @@ uint32_t DuplicateFinder::Hash(Vector<const uint8_t> key, bool is_one_byte) {
|
| // Primitive hash function, almost identical to the one used
|
| // for strings (except that it's seeded by the length and representation).
|
| int length = key.length();
|
| - uint32_t hash = (length << 1) | (is_one_byte ? 1 : 0) ;
|
| + uint32_t hash = (length << 1) | (is_one_byte ? 1 : 0);
|
| for (int i = 0; i < length; i++) {
|
| uint32_t c = key[i];
|
| hash = (hash + c) * 1025;
|
|
|