summaryrefslogtreecommitdiffstats
path: root/swaylock
diff options
context:
space:
mode:
authorLibravatar Cameron Nemo <camerontnorman@gmail.com>2018-11-30 19:58:58 -0800
committerLibravatar Cameron Nemo <camerontnorman@gmail.com>2018-11-30 23:22:09 -0800
commitc6b2ee7291fc9dee8c79f67fe8c9a69a52b9b17c (patch)
treead39c1e3e781a481ec80ebb33770fa845ecf5977 /swaylock
parentMerge pull request #3219 from RedSoxFan/swaymsg-object-success (diff)
downloadsway-c6b2ee7291fc9dee8c79f67fe8c9a69a52b9b17c.tar.gz
sway-c6b2ee7291fc9dee8c79f67fe8c9a69a52b9b17c.tar.zst
sway-c6b2ee7291fc9dee8c79f67fe8c9a69a52b9b17c.zip
swaylock: fix build with musl libc
Signed-off-by: Cameron Nemo <camerontnorman@gmail.com>
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 @@
4#include <errno.h> 4#include <errno.h>
5#include <fcntl.h> 5#include <fcntl.h>
6#include <getopt.h> 6#include <getopt.h>
7#include <poll.h>
7#include <stdbool.h> 8#include <stdbool.h>
8#include <stdio.h> 9#include <stdio.h>
9#include <stdlib.h> 10#include <stdlib.h>
@@ -961,7 +962,7 @@ int main(int argc, char **argv) {
961 } 962 }
962 963
963 state.eventloop = loop_create(); 964 state.eventloop = loop_create();
964 loop_add_fd(state.eventloop, wl_display_get_fd(state.display), POLL_IN, 965 loop_add_fd(state.eventloop, wl_display_get_fd(state.display), POLLIN,
965 display_in, NULL); 966 display_in, NULL);
966 967
967 state.run_display = true; 968 state.run_display = true;