compiler warning fix

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2019-05-14 19:54:14 +00:00
parent 6830519167
commit 0ceffd10b5

View file

@ -438,7 +438,7 @@ static int lo0bits (uint32_t* y)
if (!(x & 1)) {
k++;
x >>= 1;
if (!x & 1)
if (!(x & 1))
return 32;
}
*y = x;