aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;