1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-09 10:28:49 +00:00

osdep_event_init not event_init.

This commit is contained in:
Nicholas Marriott 2015-09-10 12:41:49 +01:00
parent fe536457cc
commit 79e5b62907

2
tmux.c
View File

@ -354,5 +354,5 @@ main(int argc, char **argv)
#endif
/* Pass control to the client. */
exit(client_main(event_init(), argc, argv, flags));
exit(client_main(osdep_event_init(), argc, argv, flags));
}