aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_updates.c
diff options
context:
space:
mode:
authorMichaHoffmann <michoffmann.potsdam@gmail.com>2018-09-23 15:44:13 +0200
committerMichaHoffmann <michoffmann.potsdam@gmail.com>2018-09-24 21:28:04 +0200
commitaffef0aab81aa8b811f829c0fab0b9f1bf5ebbb3 (patch)
tree7544c2584f0744e926c1426dc54ce9b3ddfd63b3 /src/nvim/buffer_updates.c
parent9183e2c67e82b55c6dba19266671d07a6604c0f1 (diff)
downloadrneovim-affef0aab81aa8b811f829c0fab0b9f1bf5ebbb3.tar.gz
rneovim-affef0aab81aa8b811f829c0fab0b9f1bf5ebbb3.tar.bz2
rneovim-affef0aab81aa8b811f829c0fab0b9f1bf5ebbb3.zip
add func_attr_printf in :
log.c message.c strings.c fixed some printf warnings in: src/nvim/undo.c src/nvim/eval.c src/nvim/eval/encode.c src/nvim/eval/typval.c src/nvim/ex_getln.c src/nvim/fileio.c src/nvim/lua/executor.c src/nvim/main.c src/nvim/regexp_nfa.c src/nvim/shada.c src/nvim/spellfile.c src/nvim/tui/terminfo.c src/nvim/garray.h
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);
}
}