eina: prevent compile warning.
authorChunEon Park <hermet@hermet.pe.kr>
Mon, 21 Sep 2015 04:52:57 +0000 (13:52 +0900)
committerChunEon Park <hermet@hermet.pe.kr>
Mon, 21 Sep 2015 04:52:57 +0000 (13:52 +0900)
Inline function sometimes causes app compile warnings
which applies strict compile option.

src/lib/eina/eina_inline_hash.x

index 71b0208..ab87960 100644 (file)
@@ -146,6 +146,8 @@ eina_hash_murmur3(const char *key, int len)
          k1 = _rotl32(k1, 16);
          k1 *= c2;
          h1 ^= k1;
+      default:
+         break;
      }
 
    h1 ^= len;