Merge branch 'roam-murmurhash-endian' of http://github.com/ppentchev/kakoune

main
Maxime Coste 2022-07-10 17:44:13 +10:00
commit ce75867e44
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ size_t hash_data(const char* input, size_t len)
for (ptrdiff_t i = -nblocks; i; ++i)
{
uint32_t key;
memcpy(&key, blocks + 4*i, 4);
key = (blocks[4*i + 3] << 24) | (blocks[4*i + 2] << 16) | (blocks[4*i + 1] << 8) | blocks[4*i];
key *= c1;
key = rotl(key, 15);
key *= c2;