summaryrefslogtreecommitdiffstats
path: root/util/indexuser.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/indexuser.c')
-rw-r--r--util/indexuser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/indexuser.c b/util/indexuser.c
index 8dde8f06..cc5ba78a 100644
--- a/util/indexuser.c
+++ b/util/indexuser.c
@@ -11,7 +11,7 @@ unsigned string_hash(unsigned char *s)
v = (v << 8) | (v >> 24);
v ^= toupper(*s++); /* note this is case insensitive */
}
- return (v * 2654435769UL) >> (32 - HASH_BITS);
+ return (v * 2654435769U) >> (32 - HASH_BITS);
}