poller: Inline the poller into the server struct

This commit is contained in:
Kenny Levinsen 2020-08-03 01:21:51 +02:00
parent 3f3bdd41dd
commit d68c5feaee
5 changed files with 23 additions and 35 deletions

View file

@ -10,7 +10,7 @@ struct client;
struct server {
bool running;
struct poller *poller;
struct poller poller;
struct list seats;
};