aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_updates.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-06 15:00:40 +0200
committerGitHub <noreply@github.com>2022-05-06 15:00:40 +0200
commitd9ec57e16a13f66a4b17edd872786e2c67348752 (patch)
treefa2f69bccf28a0754a9889782f7420edce5c9ed7 /src/nvim/buffer_updates.c
parent7978660efb087583a1ac49c70588d72af80de6d7 (diff)
parent21a31ea9294ef923a9d258c668d2864f4409cf1c (diff)
downloadrneovim-d9ec57e16a13f66a4b17edd872786e2c67348752.tar.gz
rneovim-d9ec57e16a13f66a4b17edd872786e2c67348752.tar.bz2
rneovim-d9ec57e16a13f66a4b17edd872786e2c67348752.zip
Merge pull request #18302 from dundargoc/refactor/enable-conversion-warning/edit
refactor: enable -Wconversion warning for edit.c
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)
{