summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss')
-rw-r--r--scss/src/hashtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/src/hashtable.c b/scss/src/hashtable.c
index 70f6cf1..22e4cc6 100644
--- a/scss/src/hashtable.c
+++ b/scss/src/hashtable.c
@@ -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: