Define uint64_t constants with ULL suffix

Fixes https://github.com/harfbuzz/harfbuzz/issues/901
This commit is contained in:
Behdad Esfahbod 2018-03-24 14:12:12 -07:00
parent 19256bef9d
commit 7ec3ba21f0
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ _hb_bit_storage (T v)
if (sizeof (T) <= 8)
{
/* "bithacks" */
const uint64_t b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000, 0xFFFFFFFF00000000};
const uint64_t b[] = {0x2ULL, 0xCULL, 0xF0ULL, 0xFF00ULL, 0xFFFF0000ULL, 0xFFFFFFFF00000000ULL};
const unsigned int S[] = {1, 2, 4, 8, 16, 32};
unsigned int r = 0;
for (int i = 5; i >= 0; i--)