aboutsummaryrefslogtreecommitdiff
path: root/swaylock
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-12-01 08:35:22 +0100
committerGitHub <noreply@github.com>2018-12-01 08:35:22 +0100
commitd5678a147fb98116c40659823e2fb677bf3167ce (patch)
treead39c1e3e781a481ec80ebb33770fa845ecf5977 /swaylock
parentfd37ded3a317d516bafdb92ec8fc1408892f480c (diff)
parentc6b2ee7291fc9dee8c79f67fe8c9a69a52b9b17c (diff)
Merge pull request #3226 from CameronNemo/musl
swaylock: fix build with musl libc
Diffstat (limited to 'swaylock')
-rw-r--r--swaylock/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/swaylock/main.c b/swaylock/main.c
index 50f145e3..9aeb4e64 100644
--- a/swaylock/main.c
+++ b/swaylock/main.c
@@ -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;