Commit 2c340596 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Martin Storsjö

elbg: Fix an assert

It seems the condition was flipped from what was intended.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent b36f87ff
......@@ -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