diff options
Diffstat (limited to 'backend/libinput')
-rw-r--r-- | backend/libinput/tablet_tool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/libinput/tablet_tool.c b/backend/libinput/tablet_tool.c index e07491d1..a6deeec8 100644 --- a/backend/libinput/tablet_tool.c +++ b/backend/libinput/tablet_tool.c @@ -13,7 +13,7 @@ #include "backend/libinput.h" #include "util/signal.h" -static struct wlr_tablet_impl tablet_impl; +static const struct wlr_tablet_impl tablet_impl; static bool tablet_is_libinput(struct wlr_tablet *tablet) { return tablet->impl == &tablet_impl; @@ -71,7 +71,7 @@ static void destroy_tablet(struct wlr_tablet *wlr_tablet) { free(tablet); } -static struct wlr_tablet_impl tablet_impl = { +static const struct wlr_tablet_impl tablet_impl = { .destroy = destroy_tablet, }; |