Commit 9018f8c3 authored by Michael Niedermayer's avatar Michael Niedermayer

elbg: fix assert

It seems the condition was flipped from what was intended
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 28ff17fa
......@@ -111,7 +111,7 @@ static int get_high_utility_cell(elbg_data *elbg)
while (elbg->utility_inc[i] < r)
i++;
assert(!elbg->cells[i]);
assert(elbg->cells[i]);
return i;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment