elbg: fix assert
It seems the condition was flipped from what was intended Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
28ff17fa97
commit
9018f8c328
@ -111,7 +111,7 @@ static int get_high_utility_cell(elbg_data *elbg)
|
|||||||
while (elbg->utility_inc[i] < r)
|
while (elbg->utility_inc[i] < r)
|
||||||
i++;
|
i++;
|
||||||
|
|
||||||
assert(!elbg->cells[i]);
|
assert(elbg->cells[i]);
|
||||||
|
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user