diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-01-14 13:19:21 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-01-14 13:19:21 -0500 |
commit | 83ddd2d9dbee1b77993f5cc45427854e18aae6f1 (patch) | |
tree | f2ec5fbc8b47b66f85978aa7feb1a09e34aaf569 /sway/tree/container.c | |
parent | 2ce1d8d6cd0ae1520ea191678e3c39d555c66b58 (diff) |
render override redirect
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 862406cf..d241f69a 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -207,7 +207,7 @@ swayc_t *destroy_output(swayc_t *output) { } swayc_t *destroy_view(swayc_t *view) { - if (!sway_assert(view, "null view passed to destroy_view")) { + if (!view) { return NULL; } wlr_log(L_DEBUG, "Destroying view '%s'", view->name); |