swaylock: fix build with musl libc

Signed-off-by: Cameron Nemo <camerontnorman@gmail.com>
This commit is contained in:
Cameron Nemo 2018-11-30 19:58:58 -08:00
parent 8191c2147b
commit 53f55a7140

3
main.c
View File

@ -4,6 +4,7 @@
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <getopt.h> #include <getopt.h>
#include <poll.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
@ -961,7 +962,7 @@ int main(int argc, char **argv) {
} }
state.eventloop = loop_create(); state.eventloop = loop_create();
loop_add_fd(state.eventloop, wl_display_get_fd(state.display), POLL_IN, loop_add_fd(state.eventloop, wl_display_get_fd(state.display), POLLIN,
display_in, NULL); display_in, NULL);
state.run_display = true; state.run_display = true;