diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-04-29 11:44:06 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-05-06 11:00:29 +0200 |
commit | 21a31ea9294ef923a9d258c668d2864f4409cf1c (patch) | |
tree | 9337f23f9b8c1b7b4dc1ec54cabc6da0ff46ae8d /src/nvim/extmark.h | |
parent | 8bbeab9989d5f905ce2e4512e9967ee99d859f70 (diff) | |
download | rneovim-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/extmark.h')
-rw-r--r-- | src/nvim/extmark.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/extmark.h b/src/nvim/extmark.h index b856a1148f..84d1e8d03b 100644 --- a/src/nvim/extmark.h +++ b/src/nvim/extmark.h @@ -29,7 +29,7 @@ typedef ptrdiff_t bcount_t; // delete the columns between mincol and endcol typedef struct { - int start_row; + linenr_T start_row; colnr_T start_col; int old_row; colnr_T old_col; |