aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-11-25 17:30:31 -0500
committerGitHub <noreply@github.com>2018-11-25 17:30:31 -0500
commit90f1a34d2cd688f18b03bf4884c338e11d3833c9 (patch)
tree78aaafa2519b1155459489c7c9a7b32bbc99a19d /include
parent9e50e19374bda99226f6bc646b757b38c218c53c (diff)
parent89ec624f81e15c453e17a6d8b0c1ca5c1f59a1f4 (diff)
Merge pull request #1375 from emersion/tablet-segfault
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;
};