diff options
author | Simon Ser <contact@emersion.fr> | 2023-11-23 14:17:39 +0100 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2024-01-25 15:05:36 +0000 |
commit | d1b39b58432c471c16e09103fd2c7850e3c41950 (patch) | |
tree | 1d825cbf9ba005a7061eb40e6ff55dfb70ac30cd /tinywl/tinywl.c | |
parent | f27808b8d98d5b9907a347cd9f01bb7bef3218b9 (diff) |
backend: take wl_event_loop instead of wl_display in wlr_backend_autocreate()
Diffstat (limited to 'tinywl/tinywl.c')
-rw-r--r-- | tinywl/tinywl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinywl/tinywl.c b/tinywl/tinywl.c index bb1d9f57..bd21dd91 100644 --- a/tinywl/tinywl.c +++ b/tinywl/tinywl.c @@ -851,7 +851,7 @@ int main(int argc, char *argv[]) { * output hardware. The autocreate option will choose the most suitable * backend based on the current environment, such as opening an X11 window * if an X11 server is running. */ - server.backend = wlr_backend_autocreate(server.wl_display, NULL); + server.backend = wlr_backend_autocreate(wl_display_get_event_loop(server.wl_display), NULL); if (server.backend == NULL) { wlr_log(WLR_ERROR, "failed to create wlr_backend"); return 1; |