aboutsummaryrefslogtreecommitdiff
path: root/include/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/server.h')
-rw-r--r--include/server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/server.h b/include/server.h
index a225668..587047e 100644
--- a/include/server.h
+++ b/include/server.h
@@ -3,7 +3,7 @@
#include <stdbool.h>
-#include "list.h"
+#include "linked_list.h"
#include "poller.h"
struct client;
@@ -12,7 +12,7 @@ struct server {
bool running;
struct poller poller;
- struct list seats;
+ struct linked_list seats;
};
int server_init(struct server *server);