diff options
author | Mykola Orliuk <virkony@gmail.com> | 2020-10-18 19:12:01 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-10-18 21:25:25 +0200 |
commit | 41bf1c6871a2bf9dc91863b9c5b8369ccaaffc61 (patch) | |
tree | a57d8e487fec70e710d5e51990f0bd54f993c125 /include/backend | |
parent | 36395e5b1c4107d6945213e0c06eaa58d885f97c (diff) |
backend/wayland: add error flow in create_wl_seat
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/wayland.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index 61b349a5..d782584f 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -121,7 +121,7 @@ void create_wl_keyboard(struct wl_keyboard *wl_keyboard, struct wlr_wl_backend * void create_wl_touch(struct wl_touch *wl_touch, struct wlr_wl_backend *wl); struct wlr_wl_input_device *create_wl_input_device( struct wlr_wl_backend *backend, enum wlr_input_device_type type); -void create_wl_seat(struct wl_seat *wl_seat, struct wlr_wl_backend *wl); +bool create_wl_seat(struct wl_seat *wl_seat, struct wlr_wl_backend *wl); void destroy_wl_seats(struct wlr_wl_backend *wl); extern const struct wl_seat_listener seat_listener; |