Fix inverted assertion

Seems like it doesn't work this way
This commit is contained in:
emersion 2018-04-07 12:03:13 -04:00
parent c47b4d4edb
commit 33b4f945ab
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -410,7 +410,7 @@ static void output_damage_whole_container_iterator(struct sway_container *con,
void *data) {
struct sway_output *output = data;
if (!sway_assert(con->type != C_VIEW, "expected a view")) {
if (!sway_assert(con->type == C_VIEW, "expected a view")) {
return;
}