This commit is contained in:
Behdad Esfahbod 2018-06-06 15:24:43 -07:00
parent 676b19f0d1
commit 78d92e0f27
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ _hb_bit_storage (T v)
if (sizeof (T) == 16)
{
unsigned int shift = 64;
return (v >> shift) ? _hb_bit_storage<uint64_t> ((uint64_t) v >> shift) + shift :
return (v >> shift) ? _hb_bit_storage<uint64_t> ((uint64_t) (v >> shift)) + shift :
_hb_bit_storage<uint64_t> ((uint64_t) v);
}