projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86993e1
)
eina: prevent compile warning.
author
ChunEon Park
<hermet@hermet.pe.kr>
Mon, 21 Sep 2015 04:52:57 +0000
(13:52 +0900)
committer
ChunEon 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
patch
|
blob
|
history
diff --git
a/src/lib/eina/eina_inline_hash.x
b/src/lib/eina/eina_inline_hash.x
index
71b0208
..
ab87960
100644
(file)
--- a/
src/lib/eina/eina_inline_hash.x
+++ b/
src/lib/eina/eina_inline_hash.x
@@
-146,6
+146,8
@@
eina_hash_murmur3(const char *key, int len)
k1 = _rotl32(k1, 16);
k1 *= c2;
h1 ^= k1;
+ default:
+ break;
}
h1 ^= len;