Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / cld_2 / src / internal / cldutil_shared.h
index 5e3b8df..af3d9e6 100644 (file)
@@ -392,7 +392,7 @@ inline void OctaFPJustHash(uint64 longwordhash,
                                   uint32* subscr, uint32* hashkey) {
   uint32 temp = (longwordhash + (longwordhash >> 12)) & (bucketcount - 1);
   *subscr = temp;
-  temp = longwordhash >> 4;
+  temp = static_cast<uint32>(longwordhash >> 4);
   *hashkey = temp & keymask;
 }