From 7411f21c5f9dbc64d98538ad3df8d4b25e1988ba Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 20 May 2016 07:54:30 +0100 Subject: [PATCH] Use osdep_event_init() so that LIBEVENT_NOEPOLL and so on are set to turn off broken event methods. Reported by Suraj N Kurapati. --- tmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux.c b/tmux.c index aa6d331a..345f9e0c 100644 --- a/tmux.c +++ b/tmux.c @@ -337,5 +337,5 @@ main(int argc, char **argv) free(label); /* Pass control to the client. */ - exit(client_main(event_init(), argc, argv, flags, shellcmd)); + exit(client_main(osdep_event_init(), argc, argv, flags, shellcmd)); }