mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-11-17 07:48:28 +01:00
Merge pull request #3226 from CameronNemo/musl
swaylock: fix build with musl libc
This commit is contained in:
commit
d5678a147f
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue