swaylock: fix build with musl libc

Signed-off-by: Cameron Nemo <camerontnorman@gmail.com>
master
Cameron Nemo 6 years ago
parent fd37ded3a3
commit c6b2ee7291
No known key found for this signature in database
GPG Key ID: 63F550786C714EC1

@ -4,6 +4,7 @@
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <poll.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
@ -961,7 +962,7 @@ int main(int argc, char **argv) {
}
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);
state.run_display = true;

Loading…
Cancel
Save