aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-11-23 14:03:14 +0100
committerKirill Primak <vyivel@eclair.cafe>2024-01-25 15:05:36 +0000
commitb62ac611c8825f83c992843e3832474eaa2e4b72 (patch)
treee9cd0501f7faf0f595d2276f58dbbf8b820eda11 /include/wlr
parented0bba581bdf0dd24e48de69ef51cf2420a50289 (diff)
backend/x11: take wl_event_loop instead of wl_display
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/backend/x11.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/backend/x11.h b/include/wlr/backend/x11.h
index 54d91c75..1791041c 100644
--- a/include/wlr/backend/x11.h
+++ b/include/wlr/backend/x11.h
@@ -17,7 +17,7 @@ struct wlr_input_device;
* The `x11_display` argument is the name of the X Display socket. Set
* to NULL for the default behaviour of XOpenDisplay().
*/
-struct wlr_backend *wlr_x11_backend_create(struct wl_display *display,
+struct wlr_backend *wlr_x11_backend_create(struct wl_event_loop *loop,
const char *x11_display);
/**