diff options
author | Heghedus Razvan <heghedus.razvan@gmail.com> | 2017-10-14 22:55:45 +0300 |
---|---|---|
committer | Heghedus Razvan <heghedus.razvan@gmail.com> | 2017-10-20 11:45:31 +0300 |
commit | bde25fe020d17bdfe2033e2fd86827f447b1f28b (patch) | |
tree | f97ecef235ea37e5231d9e6fe4f6ff3d68ea04a7 /include | |
parent | a339b10dcda358d6ff57c9c991bae0410e852541 (diff) |
Replace list_t with wl_list in wlr_multi_backend
Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/multi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/backend/multi.h b/include/backend/multi.h index 2c409b3a..82f85016 100644 --- a/include/backend/multi.h +++ b/include/backend/multi.h @@ -3,14 +3,14 @@ #include <wlr/backend/interface.h> #include <wlr/backend/multi.h> -#include <wlr/util/list.h> #include <wlr/backend/session.h> +#include <wayland-util.h> struct wlr_multi_backend { struct wlr_backend backend; struct wlr_session *session; - list_t *backends; + struct wl_list backends; }; #endif |