eina: prevent compile warning.

Inline function sometimes causes app compile warnings
which applies strict compile option.
This commit is contained in:
ChunEon Park 2015-09-21 13:52:57 +09:00
parent 86993e172a
commit db95ccf4ed
1 changed files with 2 additions and 0 deletions

View 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;