aboutsummaryrefslogtreecommitdiff
path: root/examples/touch.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/touch.c
parentf27808b8d98d5b9907a347cd9f01bb7bef3218b9 (diff)
backend: take wl_event_loop instead of wl_display in wlr_backend_autocreate()
Diffstat (limited to 'examples/touch.c')
-rw-r--r--examples/touch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/touch.c b/examples/touch.c
index 439a5720..f0aca30d 100644
--- a/examples/touch.c
+++ b/examples/touch.c
@@ -274,7 +274,7 @@ int main(int argc, char *argv[]) {
wl_list_init(&state.touch_points);
wl_list_init(&state.touch);
- 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);
}