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