diff options
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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; |