зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1102804 - Fixed -Wparentheses warnings found in mingw build (js part). r=jorendorff
This commit is contained in:
Родитель
a09ed65ad4
Коммит
68983f1752
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче