summaryrefslogtreecommitdiffstats
path: root/zix/digest.c
diff options
context:
space:
mode:
Diffstat (limited to 'zix/digest.c')
-rw-r--r--zix/digest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zix/digest.c b/zix/digest.c
index 7d9c035..d6ceb0e 100644
--- a/zix/digest.c
+++ b/zix/digest.c
@@ -50,7 +50,7 @@ zix_digest_add(uint32_t hash, const void* const buf, const size_t len)
#else
// Classic DJB hash
for (size_t i = 0; i < len; ++i) {
- hash = (hash << 5) + hash + str[i];
+ hash = (hash << 5u) + hash + str[i];
}
#endif
return hash;