diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-05-20 07:54:30 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-05-20 07:54:30 +0100 |
commit | 7411f21c5f9dbc64d98538ad3df8d4b25e1988ba (patch) | |
tree | 68e51beb9da6a2cb038a0af9acb43db40c4d97fb /tmux.c | |
parent | 2377092a70db3327cbeb07328ea8422d0395edc4 (diff) | |
download | rtmux-7411f21c5f9dbc64d98538ad3df8d4b25e1988ba.tar.gz rtmux-7411f21c5f9dbc64d98538ad3df8d4b25e1988ba.tar.bz2 rtmux-7411f21c5f9dbc64d98538ad3df8d4b25e1988ba.zip |
Use osdep_event_init() so that LIBEVENT_NOEPOLL and so on are set to turn off
broken event methods. Reported by Suraj N Kurapati.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } |