From 79e5b6290733567266a584d817fed48e1f2a52c0 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 10 Sep 2015 12:41:49 +0100 Subject: [PATCH] osdep_event_init not event_init. --- tmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux.c b/tmux.c index 86ed6f7e..31ff24a0 100644 --- a/tmux.c +++ b/tmux.c @@ -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)); }