diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-21 08:20:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 08:20:20 +0200 |
commit | ad6bbe44683cf936ec2268ee89e8e1c22f538ecc (patch) | |
tree | e639cb06834f05b90d513dd8f67a3a7191082543 /src/nvim/channel.c | |
parent | e55ebae3734068239c7070dd20ddc34b06c20a7c (diff) | |
parent | 01b2fa53f4593024437f5df25b7744b16b164e4f (diff) | |
download | rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.tar.gz rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.tar.bz2 rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.zip |
Merge #9022 from janlazo/vim-8.0.1215
Diffstat (limited to 'src/nvim/channel.c')
-rw-r--r-- | src/nvim/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/channel.c b/src/nvim/channel.c index 67306d7e11..36423d0aa1 100644 --- a/src/nvim/channel.c +++ b/src/nvim/channel.c @@ -791,7 +791,7 @@ Dictionary channel_info(uint64_t id) case kChannelStreamInternal: PUT(info, "internal", BOOLEAN_OBJ(true)); - // FALLTHROUGH + FALLTHROUGH; case kChannelStreamSocket: stream_desc = "socket"; |