aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_updates.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-07 19:36:01 +0200
committerGitHub <noreply@github.com>2018-10-07 19:36:01 +0200
commit512e0caae2e5ea507608588b645b723fc4b4f9c3 (patch)
tree8f36a6d3008dc5a1b4f71d1aa359886484a85cd4 /src/nvim/buffer_updates.c
parentf95e0ae92644d3695e9207ecfe8f5bea17594459 (diff)
parent2c84421de2e36b0e7e8d406d491d57c1b599fd30 (diff)
downloadrneovim-512e0caae2e5ea507608588b645b723fc4b4f9c3.tar.gz
rneovim-512e0caae2e5ea507608588b645b723fc4b4f9c3.tar.bz2
rneovim-512e0caae2e5ea507608588b645b723fc4b4f9c3.zip
Merge #9036 'func_attr_printf'
Diffstat (limited to 'src/nvim/buffer_updates.c')
-rw-r--r--src/nvim/buffer_updates.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_updates.c b/src/nvim/buffer_updates.c
index 18b53a0685..9d9c998a68 100644
--- a/src/nvim/buffer_updates.c
+++ b/src/nvim/buffer_updates.c
@@ -180,7 +180,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 buffer updates for dead channel %llu", badchannelid);
+ ELOG("Disabling buffer updates for dead channel %"PRIu64, badchannelid);
buf_updates_unregister(buf, badchannelid);
}
}