refactor: enable Wconversion warning for diff (#18094)

Work on https://github.com/neovim/neovim/issues/567
This commit is contained in:
dundargoc
2022-04-25 04:13:59 +02:00
committed by GitHub
parent cf2d77763f
commit 7813fa2f8c
3 changed files with 23 additions and 23 deletions

View File

@@ -178,7 +178,7 @@ typedef struct {
#define w_p_fdi w_onebuf_opt.wo_fdi // 'foldignore'
long wo_fdl;
#define w_p_fdl w_onebuf_opt.wo_fdl // 'foldlevel'
int wo_fdl_save;
long wo_fdl_save;
// 'foldlevel' state saved for diff mode
#define w_p_fdl_save w_onebuf_opt.wo_fdl_save
char_u *wo_fdm;