Replace list_t with wl_list in wlr_multi_backend

Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com>
This commit is contained in:
Heghedus Razvan 2017-10-14 22:55:45 +03:00
parent a339b10dcd
commit bde25fe020
2 changed files with 12 additions and 22 deletions

View file

@ -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