diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-07-27 17:16:24 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-07-30 17:15:27 +0200 |
commit | aa9ba05d70d73516bafaa84344b273a7fb4e874c (patch) | |
tree | fc5933092a7d8c5a841ea6b1b85978de61e66413 /src/nvim/fold.h | |
parent | 6237ac84024f048ec60475276fbf0663d9d17879 (diff) | |
download | rneovim-aa9ba05d70d73516bafaa84344b273a7fb4e874c.tar.gz rneovim-aa9ba05d70d73516bafaa84344b273a7fb4e874c.tar.bz2 rneovim-aa9ba05d70d73516bafaa84344b273a7fb4e874c.zip |
refactor: enable -Wconversion warning for screen.c
Closes https://github.com/neovim/neovim/issues/567
Diffstat (limited to 'src/nvim/fold.h')
-rw-r--r-- | src/nvim/fold.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fold.h b/src/nvim/fold.h index 60ea4b322e..f34e6d43c3 100644 --- a/src/nvim/fold.h +++ b/src/nvim/fold.h @@ -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 } |