mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Merge pull request #543 from tdaede/fix_d88_regression
Fix D88 writer regression caused by 4ba30fcf.
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
static int countl_zero(uint32_t value)
|
||||
{
|
||||
int count = 0;
|
||||
while (!(value & 0x8000000))
|
||||
while (!(value & 0x80000000))
|
||||
{
|
||||
value <<= 1;
|
||||
count++;
|
||||
|
||||
Reference in New Issue
Block a user