aboutsummaryrefslogtreecommitdiff
path: root/examples/tablet.c
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-11-23 14:17:39 +0100
committerKirill Primak <vyivel@eclair.cafe>2024-01-25 15:05:36 +0000
commitd1b39b58432c471c16e09103fd2c7850e3c41950 (patch)
tree1d825cbf9ba005a7061eb40e6ff55dfb70ac30cd /examples/tablet.c
parentf27808b8d98d5b9907a347cd9f01bb7bef3218b9 (diff)
backend: take wl_event_loop instead of wl_display in wlr_backend_autocreate()
Diffstat (limited to 'examples/tablet.c')
-rw-r--r--examples/tablet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tablet.c b/examples/tablet.c
index c977d7fd..c97cafe4 100644
--- a/examples/tablet.c
+++ b/examples/tablet.c
@@ -385,7 +385,7 @@ int main(int argc, char *argv[]) {
};
wl_list_init(&state.tablet_pads);
wl_list_init(&state.tablet_tools);
- struct wlr_backend *wlr = wlr_backend_autocreate(display, NULL);
+ struct wlr_backend *wlr = wlr_backend_autocreate(wl_display_get_event_loop(display), NULL);
if (!wlr) {
exit(1);
}