Merge pull request #1765 from emersion/fix-bad-assert

Fix inverted assertion
This commit is contained in:
Drew DeVault 2018-04-07 12:11:24 -04:00 committed by GitHub
commit a91a1a419c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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;
}