Bug 1102804 - Fixed -Wparentheses warnings found in mingw build (js part). r=jorendorff

This commit is contained in:
Jacek Caban 2014-12-14 14:33:38 +01:00
Родитель a09ed65ad4
Коммит 68983f1752
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -66,7 +66,7 @@ void *ExecutableAllocator::computeRandomAllocationAddress()
# error "Unsupported architecture"
#endif
uint64_t rand = random_next(&rngSeed, 32) << chunkBits;
return (void *) (base | rand & mask);
return (void *) (base | (rand & mask));
}
static bool