refactor: enable -Wconversion warning for screen.c

Closes https://github.com/neovim/neovim/issues/567
This commit is contained in:
Dundar Goc
2022-07-27 17:16:24 +02:00
parent 6237ac8402
commit aa9ba05d70
3 changed files with 85 additions and 99 deletions

View File

@@ -18,7 +18,7 @@ typedef struct foldinfo {
// other fields are invalid
int fi_low_level; // lowest fold level that starts in the same
// line
long fi_lines;
linenr_T fi_lines;
} foldinfo_T;
#define FOLDINFO_INIT { 0, 0, 0, 0 }