aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-11-12 20:05:13 +0100
committeremersion <contact@emersion.fr>2018-11-12 20:05:13 +0100
commit89ec624f81e15c453e17a6d8b0c1ca5c1f59a1f4 (patch)
treefecb37120cc0ebbb0a4864079b5e74c9d658a1b7 /include
parent3181c4bec06d2fe51da052c0a08c8287725ec900 (diff)
tablet-v2: fix segfault on display destroy
Diffstat (limited to 'include')
-rw-r--r--include/types/wlr_tablet_v2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/types/wlr_tablet_v2.h b/include/types/wlr_tablet_v2.h
index 4b9e727d..becde596 100644
--- a/include/types/wlr_tablet_v2.h
+++ b/include/types/wlr_tablet_v2.h
@@ -6,7 +6,7 @@
#include <wlr/types/wlr_tablet_v2.h>
struct wlr_tablet_seat_v2 {
- struct wl_list link;
+ struct wl_list link; // wlr_tablet_manager_v2::seats
struct wlr_seat *wlr_seat;
struct wlr_tablet_manager_v2 *manager;
@@ -14,7 +14,7 @@ struct wlr_tablet_seat_v2 {
struct wl_list tools;
struct wl_list pads;
- struct wl_list clients; //wlr_tablet_seat_v2_client::link;
+ struct wl_list clients; // wlr_tablet_seat_v2_client::link
struct wl_listener seat_destroy;
};