diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2020-02-02 23:13:27 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-02 23:13:27 -0800 |
| commit | ead61e5a52abcdff60d3b534bd32f43c61c0221a (patch) | |
| tree | 484ecae3687ff9a1b3f02300228476fa53e72464 /src/nvim/msgpack_rpc/channel.c | |
| parent | 983086f42e5841b84d5b24623a51ffc8c725e78f (diff) | |
| parent | 2af04e199740d5d2eaab38e272ecf1f9146335f5 (diff) | |
| download | rneovim-ead61e5a52abcdff60d3b534bd32f43c61c0221a.tar.gz rneovim-ead61e5a52abcdff60d3b534bd32f43c61c0221a.tar.bz2 rneovim-ead61e5a52abcdff60d3b534bd32f43c61c0221a.zip | |
Merge #11807 'refactor: eliminate os_unix.c (almost)'
Diffstat (limited to 'src/nvim/msgpack_rpc/channel.c')
| -rw-r--r-- | src/nvim/msgpack_rpc/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/msgpack_rpc/channel.c b/src/nvim/msgpack_rpc/channel.c index 0c874d7922..92ca29209e 100644 --- a/src/nvim/msgpack_rpc/channel.c +++ b/src/nvim/msgpack_rpc/channel.c @@ -564,7 +564,7 @@ void rpc_close(Channel *channel) static void exit_event(void **argv) { if (!exiting) { - mch_exit(0); + os_exit(0); } } |
