mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.0.0541: compiler warning on MS-Windows
Problem: Compiler warning on MS-Windows. Solution: Add a type cast. (Mike Williams)
This commit is contained in:
@@ -9032,7 +9032,7 @@ ins_bs(
|
||||
(linenr_T)(curwin->w_cursor.lnum + 1)) == FAIL)
|
||||
return FALSE;
|
||||
--Insstart.lnum;
|
||||
Insstart.col = STRLEN(ml_get(Insstart.lnum));
|
||||
Insstart.col = (colnr_T)STRLEN(ml_get(Insstart.lnum));
|
||||
}
|
||||
/*
|
||||
* In replace mode:
|
||||
|
Reference in New Issue
Block a user