This commit is contained in:
twinaphex 2017-12-05 13:21:29 +01:00
parent 53efad05c6
commit b432fb4668

View File

@ -46,7 +46,7 @@ static INLINE void bits_clear_bits(uint32_t *a, uint32_t *b, uint32_t count)
{
uint32_t i;
for (i = 0; i < count;i++)
a[i] &= b[i];
a[i] &= ~b[i];
}
static INLINE bool bits_any_set(uint32_t* ptr, uint32_t count)