Skip to content

Commit

Permalink
Merge 0892359 into 960be1c
Browse files Browse the repository at this point in the history
  • Loading branch information
stuertz committed Mar 27, 2020
2 parents 960be1c + 0892359 commit 1b9ce90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/src/hashtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ murmurhash3(const void *key, const size_t len, const unsigned int seed) {
hash = ((hash << r2) | (hash >> (32 - r2))) * m + n;
}

tail = (const unsigned char *)(key + nblocks * 4);
tail = (const unsigned char *)(key) + nblocks * 4;

switch (len & 3) {
case 3:
Expand Down

0 comments on commit 1b9ce90

Please sign in to comment.