diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-21 22:07:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 22:07:44 -0400 |
commit | e8f92838943920addcb0f80894f4e152eafa5ae4 (patch) | |
tree | c9cd07e837b454ff227fde4d7511a98c805bca27 /include/backend/libinput.h | |
parent | d4e311a1adeee7cfd2a4404d716f3e0237ead607 (diff) | |
parent | 16f35ecbeacd685e7d9905a7867d8c950e369f2e (diff) |
Merge pull request #298 from raazvvann/heghe/wl_list
Replace list_t with wl_list
Diffstat (limited to 'include/backend/libinput.h')
-rw-r--r-- | include/backend/libinput.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/backend/libinput.h b/include/backend/libinput.h index bb6083a4..93b859a7 100644 --- a/include/backend/libinput.h +++ b/include/backend/libinput.h @@ -5,7 +5,7 @@ #include <wlr/types/wlr_input_device.h> #include <wlr/backend/interface.h> #include <wlr/interfaces/wlr_input_device.h> -#include <wlr/util/list.h> +#include <wlr/types/wlr_list.h> struct wlr_libinput_backend { struct wlr_backend backend; @@ -18,7 +18,7 @@ struct wlr_libinput_backend { struct wl_listener session_signal; - list_t *wlr_device_lists; + struct wlr_list *wlr_device_lists; }; struct wlr_libinput_input_device { |