aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_updates.c
diff options
context:
space:
mode:
authorDundar Goc <gocdundar@gmail.com>2022-04-29 11:44:06 +0200
committerDundar Goc <gocdundar@gmail.com>2022-05-06 11:00:29 +0200
commit21a31ea9294ef923a9d258c668d2864f4409cf1c (patch)
tree9337f23f9b8c1b7b4dc1ec54cabc6da0ff46ae8d /src/nvim/buffer_updates.c
parent8bbeab9989d5f905ce2e4512e9967ee99d859f70 (diff)
downloadrneovim-21a31ea9294ef923a9d258c668d2864f4409cf1c.tar.gz
rneovim-21a31ea9294ef923a9d258c668d2864f4409cf1c.tar.bz2
rneovim-21a31ea9294ef923a9d258c668d2864f4409cf1c.zip
refactor: enable -Wconversion warning for edit.c
Work on https://github.com/neovim/neovim/issues/567
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 3e2d04b3a2..49e3a03dac 100644
--- a/src/nvim/buffer_updates.c
+++ b/src/nvim/buffer_updates.c
@@ -299,7 +299,7 @@ void buf_updates_send_changes(buf_T *buf, linenr_T firstline, int64_t num_added,
kv_size(buf->update_callbacks) = j;
}
-void buf_updates_send_splice(buf_T *buf, int start_row, colnr_T start_col, bcount_t start_byte,
+void buf_updates_send_splice(buf_T *buf, linenr_T start_row, colnr_T start_col, bcount_t start_byte,
int old_row, colnr_T old_col, bcount_t old_byte, int new_row,
colnr_T new_col, bcount_t new_byte)
{