aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2015-09-10 12:41:49 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2015-09-10 12:41:49 +0100
commit79e5b6290733567266a584d817fed48e1f2a52c0 (patch)
treec5ec4f8c712ffe0594fd6a8d8958a98c884f12e9 /tmux.c
parentfe536457cca384fdaa5fcf80236404cfaafc38f9 (diff)
downloadrtmux-79e5b6290733567266a584d817fed48e1f2a52c0.tar.gz
rtmux-79e5b6290733567266a584d817fed48e1f2a52c0.tar.bz2
rtmux-79e5b6290733567266a584d817fed48e1f2a52c0.zip
osdep_event_init not event_init.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c2
1 files changed, 1 insertions, 1 deletions
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));
}