aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index ca4a098878a..228d48049f0 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -5027,7 +5027,7 @@ sxhash_string (ptr, len)
5027 c = *p++; 5027 c = *p++;
5028 if (c >= 0140) 5028 if (c >= 0140)
5029 c -= 40; 5029 c -= 40;
5030 hash = ((hash << 3) + (hash >> 28) + c); 5030 hash = ((hash << 4) + (hash >> 28) + c);
5031 } 5031 }
5032 5032
5033 return hash & INTMASK; 5033 return hash & INTMASK;