From: Vsevolod Stakhov Date: Mon, 30 Sep 2013 15:42:12 +0000 (+0100) Subject: Fix warning about murmur hash macro. X-Git-Tag: 0.6.0~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d218a89ecaf7ff265a26f922d99d74ef6ef6108;p=thirdparty%2Frspamd.git Fix warning about murmur hash macro. --- diff --git a/contrib/uthash/uthash.h b/contrib/uthash/uthash.h index 79c3328e65..797c21c319 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); \