From 300a7a4cf464c32c9dfca577c4434060ab9d6ad2 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Thu, 20 Sep 2018 23:57:06 -0400 Subject: replace fallthrough comment with macro Follow-up of vim-patch:8.0.1215 --- src/nvim/channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/channel.c') 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"; -- cgit