diff options
Diffstat (limited to 'src/nvim/buffer_updates.c')
| -rw-r--r-- | src/nvim/buffer_updates.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/buffer_updates.c b/src/nvim/buffer_updates.c index 4774b969c4..157f80e55a 100644 --- a/src/nvim/buffer_updates.c +++ b/src/nvim/buffer_updates.c @@ -1,3 +1,6 @@ +// This is an open source non-commercial project. Dear PVS-Studio, please check +// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com + #include "nvim/buffer_updates.h" #include "nvim/memline.h" #include "nvim/api/private/helpers.h" @@ -199,7 +202,7 @@ void buf_updates_send_changes(buf_T *buf, // change notifications are so frequent that many dead channels will be // cleared up quickly. if (badchannelid != 0) { - ELOG("Disabling live updates for dead channel %llu", badchannelid); + ELOG("Disabling buffer updates for dead channel %llu", badchannelid); buf_updates_unregister(buf, badchannelid); } } |