aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-07-09 22:59:57 +0100
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-07-11 18:37:17 -0400
commit60fdb71a1f65d3c4f8516b4216f08a2347f1c3b7 (patch)
tree0ee0ea4ce75b28f278e830b9a86de48ba0474e03 /sway/tree/view.c
parentMerge pull request #2248 from Dudemanguy911/fix_crash_on_floating_windows (diff)
downloadsway-60fdb71a1f65d3c4f8516b4216f08a2347f1c3b7.tar.gz
sway-60fdb71a1f65d3c4f8516b4216f08a2347f1c3b7.tar.zst
sway-60fdb71a1f65d3c4f8516b4216f08a2347f1c3b7.zip
Updates for swaywm/wlroots#1116
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index f99def6c..20cbaf1c 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -752,8 +752,9 @@ struct sway_view *view_from_wlr_surface(struct wlr_surface *wlr_surface) {
752 return NULL; 752 return NULL;
753 } 753 }
754 754
755 const char *role = wlr_surface->role ? wlr_surface->role->name : NULL;
755 wlr_log(WLR_DEBUG, "Surface of unknown type (role %s): %p", 756 wlr_log(WLR_DEBUG, "Surface of unknown type (role %s): %p",
756 wlr_surface->role, wlr_surface); 757 role, wlr_surface);
757 return NULL; 758 return NULL;
758} 759}
759 760