mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.0.0541: compiler warning on MS-Windows
Problem: Compiler warning on MS-Windows.
Solution: Add a type cast. (Mike Williams)
04000560ca
This commit is contained in:
parent
3bcbf802ce
commit
392b3396fd
@ -7554,7 +7554,7 @@ static bool ins_bs(int c, int mode, int *inserted_space_p)
|
||||
return false;
|
||||
}
|
||||
Insstart.lnum--;
|
||||
Insstart.col = STRLEN(ml_get(Insstart.lnum));
|
||||
Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
|
||||
}
|
||||
/*
|
||||
* In replace mode:
|
||||
|
Loading…
Reference in New Issue
Block a user