diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-09-30 16:42:12 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-09-30 16:42:12 +0100 |
commit | 3d218a89ecaf7ff265a26f922d99d74ef6ef6108 (patch) | |
tree | ef97af982cea84cb5dd845afd5f99f689beb4891 /contrib/uthash | |
parent | 70fbd319e055e8eeecdd7a67aa832ac81476f4f3 (diff) | |
download | rspamd-3d218a89ecaf7ff265a26f922d99d74ef6ef6108.tar.gz rspamd-3d218a89ecaf7ff265a26f922d99d74ef6ef6108.zip |
Fix warning about murmur hash macro.
Diffstat (limited to 'contrib/uthash')
-rw-r--r-- | contrib/uthash/uthash.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/uthash/uthash.h b/contrib/uthash/uthash.h index 79c3328e6..797c21c31 100644 --- a/contrib/uthash/uthash.h +++ b/contrib/uthash/uthash.h @@ -582,6 +582,7 @@ do { \ _mur_k1 = MUR_ROTL32(_mur_k1,15); \ _mur_k1 *= _mur_c2; \ _mur_h1 ^= _mur_k1; \ + case 0: break; \ } \ _mur_h1 ^= (keylen); \ MUR_FMIX(_mur_h1); \ |