diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-09-10 12:41:49 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-09-10 12:41:49 +0100 |
commit | 79e5b6290733567266a584d817fed48e1f2a52c0 (patch) | |
tree | c5ec4f8c712ffe0594fd6a8d8958a98c884f12e9 /tmux.c | |
parent | fe536457cca384fdaa5fcf80236404cfaafc38f9 (diff) | |
download | rtmux-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } |