diff options
Diffstat (limited to 'include/client.h')
-rw-r--r-- | include/client.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/client.h b/include/client.h index fb7574b..7d4a247 100644 --- a/include/client.h +++ b/include/client.h @@ -6,6 +6,7 @@ #include <unistd.h> #include "connection.h" +#include "linked_list.h" #include "list.h" struct server; @@ -23,7 +24,7 @@ struct client { int seat_vt; bool pending_disable; - struct list devices; + struct linked_list devices; }; struct client *client_create(struct server *server, int client_fd); |